[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r3809: Fix a similar build error in the TBB alt-launcher stuff. (vidalia/branches/breakpad/src/common)
Author: edmanm
Date: 2009-06-01 02:40:02 -0400 (Mon, 01 Jun 2009)
New Revision: 3809
Modified:
vidalia/branches/breakpad/src/common/win32.cpp
Log:
Fix a similar build error in the TBB alt-launcher stuff.
Modified: vidalia/branches/breakpad/src/common/win32.cpp
===================================================================
--- vidalia/branches/breakpad/src/common/win32.cpp 2009-06-01 06:03:08 UTC (rev 3808)
+++ vidalia/branches/breakpad/src/common/win32.cpp 2009-06-01 06:40:02 UTC (rev 3809)
@@ -155,7 +155,8 @@
/**
* Callback for EnumThreadWindows which sends the WM_QUIT message
*/
-BOOL CALLBACK quitWindowCallback(HWND hwnd, LPARAM targetPID)
+BOOL CALLBACK
+quitWindowCallback(HWND hwnd, LPARAM targetPID)
{
DWORD hwndPID = 0;
@@ -164,6 +165,7 @@
GetWindowThreadProcessId(hwnd, &hwndPID);
if (hwndPID == (DWORD)targetPID)
PostMessage(hwnd, WM_QUIT, 0, (LPARAM)NULL);
+ return TRUE;
}
/**