// headers
// ---------------------------------------------------------------------------
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "window.h"
#endif
virtual void Refresh( bool eraseBackground = TRUE,
const wxRect *rect = (const wxRect *) NULL );
virtual void Update();
- virtual void Clear();
virtual void Freeze();
virtual void Thaw();
wxWindow* GetWindowChild(wxWindowID id);
#endif // __WXUNIVERSAL__
-#if wxUSE_ACCEL
+#if wxUSE_HOTKEY
// install and deinstall a system wide hotkey
- virtual bool RegisterHotKey(int hotkeyId, int modifiers, int virtualKeyCode);
+ virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode);
virtual bool UnregisterHotKey(int hotkeyId);
-#endif
+#endif // wxUSE_HOTKEY
// implementation from now on
// --------------------------