]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mdi.h
support SDK < 10.6, fixes #14902
[wxWidgets.git] / include / wx / mdi.h
index 1f5d56e6474a3985632b7175c4bc711653fff87d..19a8832fb643b8672f00c1e51653370c5e0c3d78 100644 (file)
@@ -181,6 +181,11 @@ public:
     // return true.
     virtual bool IsTopNavigationDomain() const { return true; }
 
+    // Raising any frame is supposed to show it but wxFrame Raise()
+    // implementation doesn't work for MDI child frames in most forms so
+    // forward this to Activate() which serves the same purpose by default.
+    virtual void Raise() { Activate(); }
+
 protected:
     wxMDIParentFrame *m_mdiParent;
 };