]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
Decided that not doing methods for keyboard commands was not worth the
[wxWidgets.git] / include / wx / window.h
index 2f08ddd460fc1a607fcc051df4d22264666cf503..75134e6892232c35f514f9938cbba8ad898dd780 100644 (file)
@@ -1039,7 +1039,9 @@ protected:
     // specified) border for the window class
     virtual wxBorder GetDefaultBorder() const;
 
-    // get the default size for the new window if no explicit size given
+    // 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.
     static int WidthDefault(int w) { return w == -1 ? 400 : w; }
     static int HeightDefault(int h) { return h == -1 ? 250 : h; }