]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/frame.h
fix warnings in EventsSuppressor ctor from gcc with -O option
[wxWidgets.git] / include / wx / frame.h
index 15bbfd7c35dc1d8a95c53f2762e8f43fedfd2628..2889bbecaee34bf59ad782cdab6fa9876799b203 100644 (file)
@@ -180,6 +180,11 @@ public:
     virtual void DoGiveHelp(const wxString& text, bool show);
 #endif
 
+    virtual bool IsClientAreaChild(const wxWindow *child) const
+    {
+        return !IsOneOfBars(child) && wxTopLevelWindow::IsClientAreaChild(child);
+    }
+
 protected:
     // the frame main menu/status/tool bars
     // ------------------------------------
@@ -190,10 +195,6 @@ protected:
 
     // test whether this window makes part of the frame
     virtual bool IsOneOfBars(const wxWindow *win) const;
-    virtual bool IsClientAreaChild(const wxWindow *child) const
-    {
-        return !IsOneOfBars(child) && wxTopLevelWindow::IsClientAreaChild(child);
-    }
 
 #if wxUSE_MENUS
     // override to update menu bar position when the frame size changes