]> git.saurik.com Git - wxWidgets.git/blobdiff - src/aui/framemanager.cpp
Use _UNICODE instead of UNICODE in wx/msw/winundef.h.
[wxWidgets.git] / src / aui / framemanager.cpp
index 7a580981e4eef3ab06c2ef00cbee0e57c57b70ca..cd0eebc4f96768c9089d131039552f9a16964fdf 100644 (file)
@@ -277,6 +277,16 @@ public:
         return true;
     }
 
         return true;
     }
 
+protected:
+    virtual void DoSetSizeHints( int minW, int minH,
+                                 int maxW, int maxH,
+                                 int incW, int incH)
+    {
+        // the real wxFrame method doesn't work for us because we're not really
+        // a top level window so skip it
+        wxWindow::DoSetSizeHints(minW, minH, maxW, maxH, incW, incH);
+    }
+
 private:
     DECLARE_DYNAMIC_CLASS(wxPseudoTransparentFrame)
 };
 private:
     DECLARE_DYNAMIC_CLASS(wxPseudoTransparentFrame)
 };