X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0201182bf56889e11f925f8a6c9f967d5c598a10..9b2a74693ea0ac096f5099caac4a5ead3268e07f:/include/wx/accel.h?ds=sidebyside diff --git a/include/wx/accel.h b/include/wx/accel.h index faf7d50f88..5e22e95623 100644 --- a/include/wx/accel.h +++ b/include/wx/accel.h @@ -5,7 +5,7 @@ // Modified by: // Created: 31.05.01 (extracted from other files) // RCS-ID: $Id$ -// Copyright: (c) wxWindows team +// Copyright: (c) wxWidgets team // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -62,7 +62,7 @@ public: Set(entry.m_flags, entry.m_keyCode, entry.m_command, entry.m_item); return *this; } - + void Set(int flags, int keyCode, int cmd, wxMenuItem *item = NULL) { m_flags = flags; @@ -94,7 +94,7 @@ public: // Implementation use only bool MatchesEvent(const wxKeyEvent& event) const; #endif - + private: int m_flags; // combination of wxACCEL_XXX constants int m_keyCode; // ASCII or virtual keycode @@ -118,8 +118,10 @@ private: #include "wx/msw/accel.h" #elif defined(__WXMOTIF__) #include "wx/motif/accel.h" -#elif defined(__WXGTK__) +#elif defined(__WXGTK20__) #include "wx/gtk/accel.h" +#elif defined(__WXGTK__) + #include "wx/gtk1/accel.h" #elif defined(__WXMAC__) #include "wx/mac/accel.h" #elif defined(__WXCOCOA__) @@ -128,7 +130,7 @@ private: #include "wx/os2/accel.h" #endif -WXDLLEXPORT_DATA(extern wxAcceleratorTable) wxNullAcceleratorTable; +extern WXDLLEXPORT_DATA(wxAcceleratorTable) wxNullAcceleratorTable; #endif // wxUSE_ACCEL