]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/slider.cpp
new method for contentScaleFactor on main screen
[wxWidgets.git] / src / osx / carbon / slider.cpp
index 30763766221c0324bb8762cfe2f3c3119d29188c..ad2bc14334f2e7230bd4feb106772570e976a095 100644 (file)
@@ -48,7 +48,7 @@ wxWidgetImplType* wxWidgetImpl::CreateSlider( wxWindowMac* wxpeer,
     if ( style & wxSL_AUTOTICKS )
         tickMarks = (maximum - minimum) + 1; // +1 for the 0 value
 
-    // keep the number of tickmarks from becoming unwieldly, therefore below it is ok to cast
+    // keep the number of tickmarks from becoming unwieldy, therefore below it is ok to cast
     // it to a UInt16
     while (tickMarks > 20)
         tickMarks /= 5;