]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
Added UpdateSize to wxSplitterWindow, to allow an app
[wxWidgets.git] / include / wx / window.h
index 80925c1468576d2f1e913ca8c8b6aa570f78d939..4768866ad464dabd7e44a20c38fbd211d49ad974 100644 (file)
@@ -1057,9 +1057,8 @@ protected:
     // specified) border for the window class
     virtual wxBorder GetDefaultBorder() const;
 
-    // Get the default size for the new window if no explicit size given. If
-    // there are better default sizes then these can be changed, just as long
-    // as they are not too small for TLWs.
+    // Get the default size for the new window if no explicit size given. TLWs
+    // have their own default size so this is just for non top-level windows.
     static int WidthDefault(int w) { return w == -1 ? 20 : w; }
     static int HeightDefault(int h) { return h == -1 ? 20 : h; }