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:
Václav Slavík 2004-03-24 20:12:14 +00:00
parent eefe6d4b7c
commit dda36afd4a
2 changed files with 4 additions and 6 deletions

View File

@ -54,8 +54,7 @@ public:
// Implementation
protected:
friend class wxTaskBarIconWindow;
long WindowProc(WXHWND hWnd, unsigned int msg,
unsigned int wParam, long lParam);
long WindowProc(unsigned int msg, unsigned int wParam, long lParam);
void RegisterWindowMessages();
// Data members

View File

@ -91,7 +91,7 @@ public:
{
if (msg == gs_msgRestartTaskbar || msg == gs_msgTaskbar)
{
return m_icon->WindowProc(GetHWND(), msg, wParam, lParam);
return m_icon->WindowProc(msg, wParam, lParam);
}
else
{
@ -268,9 +268,8 @@ void wxTaskBarIcon::RegisterWindowMessages()
// wxTaskBarIcon window proc
// ----------------------------------------------------------------------------
long wxTaskBarIcon::WindowProc(WXHWND hWnd,
unsigned int msg,
unsigned int wParam,
long wxTaskBarIcon::WindowProc(unsigned int msg,
unsigned int WXUNUSED(wParam),
long lParam)
{
wxEventType eventType = 0;