]> git.saurik.com Git - wxWidgets.git/commitdiff
Clean up indentation / tabs from previous patch
authorKevin Hock <hockkn@yahoo.com>
Sun, 30 Jan 2005 22:51:21 +0000 (22:51 +0000)
committerKevin Hock <hockkn@yahoo.com>
Sun, 30 Jan 2005 22:51:21 +0000 (22:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31664 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/slider.cpp

index b9d1fd97c6f51b4256840d5ff35f31db090148ec..c88fe4e2e261ed10d8f38c8a9ca53d714bb4ef66 100644 (file)
@@ -445,19 +445,19 @@ void wxSlider::DoSetSize(int x, int y, int w, int h, int sizeFlags)
     // TODO: Can all of this code go in the conditional wxSL_LABELS block?
     
     int minWidth;
-       minWidth = m_minWidth;
+    minWidth = m_minWidth;
        
-       if (GetWindowStyle() & wxSL_LABELS)
+    if (GetWindowStyle() & wxSL_LABELS)
     {
-               // make sure we don't allow the entire control to be resized accidently
-               if (width == GetSize().x)
-                       m_minWidth = -1;
-       }
+        // make sure we don't allow the entire control to be resized accidently
+        if (width == GetSize().x)
+            m_minWidth = -1;
+    }
        //If the control has labels, we still need to call this again because
     //the labels alter the control's w and h values.
     wxControl::DoSetSize( x, y , w , h ,sizeFlags ) ;
 
-       m_minWidth = minWidth;
+    m_minWidth = minWidth;
 }
 
 void wxSlider::DoMoveWindow(int x, int y, int width, int height)