From 723f8e3a33ea4e4704ff86dfadc096ce9944a693 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 5 Mar 2004 21:16:28 +0000 Subject: [PATCH] Updated comment git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26098 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/window.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/wx/window.h b/include/wx/window.h index 2f08ddd460..75134e6892 100644 --- a/include/wx/window.h +++ b/include/wx/window.h @@ -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; }