X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bbca44f104e713b55c340475d9f3d104a5ceb624..931d6a47c32a5b4c283243cb553ce71ee2b535d5:/src/osx/carbon/slider.cpp diff --git a/src/osx/carbon/slider.cpp b/src/osx/carbon/slider.cpp index 3076376622..e5f6f3f4b5 100644 --- a/src/osx/carbon/slider.cpp +++ b/src/osx/carbon/slider.cpp @@ -4,7 +4,6 @@ // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 -// RCS-ID: $Id$ // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -48,7 +47,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;