Final fix for Bug #1472688 'wxString::Trim() is broken'

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-06-15 23:21:28 +00:00
parent 000cdd5eac
commit 32c62191d7

View File

@@ -1618,7 +1618,7 @@ wxString& wxString::Trim(bool bFromRight)
{
// find last non-space character
reverse_iterator psz = rbegin();
while ( wxSafeIsspace(*psz) && (psz != rend()) )
while ( (psz != rend()) && wxSafeIsspace(*psz) )
psz++;
// truncate at trailing space start
@@ -1628,7 +1628,7 @@ wxString& wxString::Trim(bool bFromRight)
{
// find first non-space character
iterator psz = begin();
while ( wxSafeIsspace(*psz) && (psz != end()) )
while ( (psz != end()) && wxSafeIsspace(*psz) )
psz++;
// fix up data and length