linking fixes and code cleanup after hotkey patch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21848 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-10 09:56:47 +00:00
parent 654070ca23
commit 540b6b097f
4 changed files with 71 additions and 54 deletions

View File

@@ -2107,18 +2107,23 @@ void wxWindowBase::ReleaseMouse()
}
#if wxUSE_HOTKEY
bool wxWindowBase::RegisterHotKey(int hotkeyId, int modifiers, int virtualKeyCode)
bool
wxWindowBase::RegisterHotKey(int WXUNUSED(hotkeyId),
int WXUNUSED(modifiers),
int WXUNUSED(keycode))
{
// not implemented
return false;
}
bool wxWindowBase::UnregisterHotKey(int hotkeyId)
bool wxWindowBase::UnregisterHotKey(int WXUNUSED(hotkeyId))
{
// not implemented
return false;
}
#endif
#endif // wxUSE_HOTKEY
void wxWindowBase::SendDestroyEvent()
{