]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Add missing WXK constants for the control keys
[wxWidgets.git] / src / common / wincmn.cpp
index ae072ece15b39481f86ec380f301b90a21b41e51..13370f51c630f8e449b635438ae1240d04c2449a 100644 (file)
@@ -620,20 +620,13 @@ void wxWindowBase::DoCentre(int dir)
 // fits the window around the children
 void wxWindowBase::Fit()
 {
-    if ( !GetChildren().empty() )
-    {
-        SetSize(GetBestSize());
-    }
-    //else: do nothing if we have no children
+    SetSize(GetBestSize());
 }
 
 // fits virtual size (ie. scrolled area etc.) around children
 void wxWindowBase::FitInside()
 {
-    if ( GetChildren().GetCount() > 0 )
-    {
-        SetVirtualSize( GetBestVirtualSize() );
-    }
+    SetVirtualSize( GetBestVirtualSize() );
 }
 
 // On Mac, scrollbars are explicitly children.