Fixed apparent typo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11461 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2001-08-24 19:55:38 +00:00
parent ad8b849872
commit 51a229c65f
2 changed files with 2 additions and 2 deletions

View File

@@ -308,7 +308,7 @@ int wxListBox::FindString(const wxString& st) const
if ( EqualString( s1 , s2 , false , false ) )
return i ;
}
if ( s.Left(1) = "*" && s.Length() > 1 )
if ( s.Left(1) == "*" && s.Length() > 1 )
{
s.MakeLower() ;
for ( int i = 0 ; i < m_noItems ; ++i )

View File

@@ -308,7 +308,7 @@ int wxListBox::FindString(const wxString& st) const
if ( EqualString( s1 , s2 , false , false ) )
return i ;
}
if ( s.Left(1) = "*" && s.Length() > 1 )
if ( s.Left(1) == "*" && s.Length() > 1 )
{
s.MakeLower() ;
for ( int i = 0 ; i < m_noItems ; ++i )