fixed warnings about unneeded arguments
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -54,8 +54,7 @@ public:
|
|||||||
// Implementation
|
// Implementation
|
||||||
protected:
|
protected:
|
||||||
friend class wxTaskBarIconWindow;
|
friend class wxTaskBarIconWindow;
|
||||||
long WindowProc(WXHWND hWnd, unsigned int msg,
|
long WindowProc(unsigned int msg, unsigned int wParam, long lParam);
|
||||||
unsigned int wParam, long lParam);
|
|
||||||
void RegisterWindowMessages();
|
void RegisterWindowMessages();
|
||||||
|
|
||||||
// Data members
|
// Data members
|
||||||
|
@@ -91,7 +91,7 @@ public:
|
|||||||
{
|
{
|
||||||
if (msg == gs_msgRestartTaskbar || msg == gs_msgTaskbar)
|
if (msg == gs_msgRestartTaskbar || msg == gs_msgTaskbar)
|
||||||
{
|
{
|
||||||
return m_icon->WindowProc(GetHWND(), msg, wParam, lParam);
|
return m_icon->WindowProc(msg, wParam, lParam);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -268,9 +268,8 @@ void wxTaskBarIcon::RegisterWindowMessages()
|
|||||||
// wxTaskBarIcon window proc
|
// wxTaskBarIcon window proc
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
long wxTaskBarIcon::WindowProc(WXHWND hWnd,
|
long wxTaskBarIcon::WindowProc(unsigned int msg,
|
||||||
unsigned int msg,
|
unsigned int WXUNUSED(wParam),
|
||||||
unsigned int wParam,
|
|
||||||
long lParam)
|
long lParam)
|
||||||
{
|
{
|
||||||
wxEventType eventType = 0;
|
wxEventType eventType = 0;
|
||||||
|
Reference in New Issue
Block a user