mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 00:55:48 +00:00
[EXPLORER]
* Addendum to r66040: Fix the return types and remove unused parameters. svn path=/trunk/; revision=66041
This commit is contained in:
parent
ae7cd5ec73
commit
5eee49bbea
1 changed files with 4 additions and 5 deletions
|
@ -417,7 +417,7 @@ public:
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
LRESULT NotifyIconCmd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
BOOL NotifyIconCmd(WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
PCOPYDATASTRUCT cpData = (PCOPYDATASTRUCT) lParam;
|
PCOPYDATASTRUCT cpData = (PCOPYDATASTRUCT) lParam;
|
||||||
if (cpData->dwData == 1)
|
if (cpData->dwData == 1)
|
||||||
|
@ -1457,11 +1457,11 @@ public:
|
||||||
return DrawBackground(hdc);
|
return DrawBackground(hdc);
|
||||||
}
|
}
|
||||||
|
|
||||||
LRESULT NotifyIconCmd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
BOOL NotifyIconCmd(WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
if (m_pager)
|
if (m_pager)
|
||||||
{
|
{
|
||||||
return m_pager->NotifyIconCmd(uMsg, wParam, lParam, bHandled);
|
return m_pager->NotifyIconCmd(wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -1595,8 +1595,7 @@ HWND CreateTrayNotifyWnd(IN OUT ITrayWindow *Tray, BOOL bHideClock, CTrayNotifyW
|
||||||
BOOL
|
BOOL
|
||||||
TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, WPARAM wParam, LPARAM lParam)
|
TrayNotify_NotifyIconCmd(CTrayNotifyWnd* pTrayNotify, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
BOOL bDummy;
|
return pTrayNotify->NotifyIconCmd(wParam, lParam);
|
||||||
return pTrayNotify->NotifyIconCmd(0, wParam, lParam, bDummy);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue