No changes, just fix typos in comments in wxOSX files.

Closes #14549, #14552.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-08-01 22:05:48 +00:00
parent 7740f1c7c9
commit 3d167787c0
10 changed files with 12 additions and 12 deletions

View 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;