From 56cae963fdaba159f6111c6a720891aeb79f9033 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Sat, 4 Oct 2003 17:36:40 +0000 Subject: [PATCH] removed compiler warning svn path=/trunk/; revision=6227 --- reactos/subsys/system/explorer/taskbar/traynotify.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/taskbar/traynotify.cpp b/reactos/subsys/system/explorer/taskbar/traynotify.cpp index 15efddc9986..470b040b1a0 100644 --- a/reactos/subsys/system/explorer/taskbar/traynotify.cpp +++ b/reactos/subsys/system/explorer/taskbar/traynotify.cpp @@ -150,7 +150,7 @@ LRESULT NotifyArea::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam) if (IsWindow(entry._hWnd)) { // allow SetForegroundWindow() in Client Process DWORD processId; - DWORD threadId = GetWindowThreadProcessId(entry._hWnd, &processId); + GetWindowThreadProcessId(entry._hWnd, &processId); #ifndef __WINE__ // currently no AllowSetForegroundWindow() in Wine AllowSetForegroundWindow(processId);