]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
use a global hwndTT
[wxWidgets.git] / src / msw / frame.cpp
index f3123bd1d470820e4ebe242111810deaa608f1eb..1f463ef76a1db304357b7dfc0a6f0053ee96b8d0 100644 (file)
@@ -175,8 +175,10 @@ void wxFrame::DoGetClientSize(int *x, int *y) const
   rect.bottom -= pt.y;
   rect.right -= pt.x;
 
-  *x = rect.right;
-  *y = rect.bottom;
+  if ( x )
+    *x = rect.right;
+  if ( y )
+    *y = rect.bottom;
 }
 
 // Set the client size (i.e. leave the calculation of borders etc.
@@ -420,6 +422,7 @@ void wxFrame::SetMenuBar(wxMenuBar *menu_bar)
 {
     if (!menu_bar)
     {
+        delete m_frameMenuBar;
         m_frameMenuBar = NULL;
         return;
     }