]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Compilation fix.
[wxWidgets.git] / src / common / wincmn.cpp
index 06582f8f98596d8bbe0a3c05060ef74ef98ed1ea..61402fabf07df6ae8a03f26cfd473fc83ee13881 100644 (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()
 {