]> git.saurik.com Git - wxWidgets.git/commitdiff
Enum becomes public
authorJulian Smart <julian@anthemion.co.uk>
Tue, 15 Jun 2004 22:24:49 +0000 (22:24 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 15 Jun 2004 22:24:49 +0000 (22:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/event.h

index 08bfe769b400c56be46792fbe855812fac366f61..75b961517c012770a923012043581dd8189f5854 100644 (file)
@@ -1763,9 +1763,11 @@ public:
     wxWindow* GetCurrentFocus() const { return m_focus; }
     void SetCurrentFocus(wxWindow *win) { m_focus = win; }
 
+    // Set flags
+    void SetFlags(long flags) { m_flags = flags; }
+
     virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); }
 
-private:
     enum
     {
         IsForward = 0x0001,