]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove debug code
authorRobert Roebling <robert@roebling.de>
Fri, 30 Jan 2009 23:03:01 +0000 (23:03 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 30 Jan 2009 23:03:01 +0000 (23:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/wincmn.cpp

index 96e14509b3c36cea863684de721161192c8408ee..5b3fb6b85307a644533eb1886a140a83c8af6fe5 100644 (file)
@@ -47,8 +47,6 @@
     #include "wx/menu.h"
 #endif //WX_PRECOMP
 
     #include "wx/menu.h"
 #endif //WX_PRECOMP
 
-#include "wx/collpane.h"
-
 #if wxUSE_DRAG_AND_DROP
     #include "wx/dnd.h"
 #endif // wxUSE_DRAG_AND_DROP
 #if wxUSE_DRAG_AND_DROP
     #include "wx/dnd.h"
 #endif // wxUSE_DRAG_AND_DROP
@@ -713,12 +711,14 @@ wxSize wxWindowBase::GetEffectiveMinSize() const
 {
     // merge the best size with the min size, giving priority to the min size
     wxSize min = GetMinSize();
 {
     // merge the best size with the min size, giving priority to the min size
     wxSize min = GetMinSize();
+    
     if (min.x == wxDefaultCoord || min.y == wxDefaultCoord)
     {
         wxSize best = GetBestSize();
         if (min.x == wxDefaultCoord) min.x =  best.x;
         if (min.y == wxDefaultCoord) min.y =  best.y;
     }
     if (min.x == wxDefaultCoord || min.y == wxDefaultCoord)
     {
         wxSize best = GetBestSize();
         if (min.x == wxDefaultCoord) min.x =  best.x;
         if (min.y == wxDefaultCoord) min.y =  best.y;
     }
+    
     return min;
 }
 
     return min;
 }