Author: dquintana
Date: Thu Jan 15 17:58:16 2015
New Revision: 66041
URL: 
http://svn.reactos.org/svn/reactos?rev=66041&view=rev
Log:
[EXPLORER]
* Addendum to r66040: Fix the return types and remove unused parameters.
Modified:
    trunk/reactos/base/shell/explorer/trayntfy.cpp
Modified: trunk/reactos/base/shell/explorer/trayntfy.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/traynt…
==============================================================================
--- trunk/reactos/base/shell/explorer/trayntfy.cpp      [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/trayntfy.cpp      [iso-8859-1] Thu Jan 15 17:58:16
2015
@@ -417,7 +417,7 @@
         return TRUE;
     }
-    LRESULT NotifyIconCmd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
+    BOOL NotifyIconCmd(WPARAM wParam, LPARAM lParam)
     {
         PCOPYDATASTRUCT cpData = (PCOPYDATASTRUCT) lParam;
         if (cpData->dwData == 1)
@@ -1457,11 +1457,11 @@
         return DrawBackground(hdc);
     }
-    LRESULT NotifyIconCmd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
+    BOOL NotifyIconCmd(WPARAM wParam, LPARAM lParam)
     {
         if (m_pager)
         {
-            return m_pager->NotifyIconCmd(uMsg, wParam, lParam, bHandled);
+            return m_pager->NotifyIconCmd(wParam, lParam);
         }
         return TRUE;
@@ -1595,8 +1595,7 @@
 BOOL
 TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, WPARAM wParam, LPARAM lParam)
 {
-    BOOL bDummy;
-    return pTrayNotify->NotifyIconCmd(0, wParam, lParam, bDummy);
+    return pTrayNotify->NotifyIconCmd(wParam, lParam);
 }
 BOOL