]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed scope of wxMenuBar::Refresh() from protected to public.
authorPatrick Albert <als@barjov.frmug.fr.net>
Mon, 6 Sep 1999 12:53:09 +0000 (12:53 +0000)
committerPatrick Albert <als@barjov.frmug.fr.net>
Mon, 6 Sep 1999 12:53:09 +0000 (12:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3574 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/menu.h

index 0548776b675d3ee116d68fd7e578ad06826eaab6..4157007090586ad80b00579b6d98ecaa5cdb7114 100644 (file)
@@ -281,14 +281,14 @@ public:
         // get the menu handle
     WXHMENU GetHMenu() const { return m_hMenu; }
 
         // get the menu handle
     WXHMENU GetHMenu() const { return m_hMenu; }
 
-protected:
-    // common part of all ctors
-    void Init();
-
     // if the menubar is modified, the display is not updated automatically,
     // call this function to update it (m_menuBarFrame should be !NULL)
     void Refresh();
 
     // if the menubar is modified, the display is not updated automatically,
     // call this function to update it (m_menuBarFrame should be !NULL)
     void Refresh();
 
+protected:
+    // common part of all ctors
+    void Init();
+
     wxEvtHandler *m_eventHandler;
     int           m_menuCount;
     wxMenu      **m_menus;
     wxEvtHandler *m_eventHandler;
     int           m_menuCount;
     wxMenu      **m_menus;