]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
Define wxDEBUG_LEVEL in both debug and release builds as 1.
[wxWidgets.git] / src / msw / window.cpp
index 84c0e3281124736e9e840173fc8292785daeec0d..217d837291600fbf3a7bec957c7264fd0b3415fd 100644 (file)
@@ -2021,7 +2021,7 @@ void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags)
     {
         if ( sizeFlags & wxSIZE_AUTO_WIDTH )
         {
-            size = DoGetBestSize();
+            size = GetBestSize();
             width = size.x;
         }
         else
@@ -2037,9 +2037,9 @@ void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags)
         {
             if ( size.x == wxDefaultCoord )
             {
-                size = DoGetBestSize();
+                size = GetBestSize();
             }
-            //else: already called DoGetBestSize() above
+            //else: already called GetBestSize() above
 
             height = size.y;
         }