]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix off by one error in wxTextCtrl::GetLineLength() in wxOSX.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Jul 2011 21:54:08 +0000 (21:54 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Jul 2011 21:54:08 +0000 (21:54 +0000)
The trailing new line shouldn't be counted in the line length.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/textctrl_osx.cpp

index 0af4f04bccf32978cdf2f1d7a5c3c0c913bdd2ca..8c2f1d83da432a4dc812ae63e038fe2408de20a8 100644 (file)
@@ -775,9 +775,10 @@ int wxTextWidgetImpl::GetLineLength(long lineNo) const
             count = 0;
             for (size_t j = i; j < content.length(); j++)
             {
-                count++;
                 if (content[j] == '\n')
                     return count;
+
+                count++;
             }
 
             return count;