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:
@@ -308,7 +308,7 @@ int wxListBox::FindString(const wxString& st) const
|
|||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , false , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
if ( s.Left(1) = "*" && s.Length() > 1 )
|
if ( s.Left(1) == "*" && s.Length() > 1 )
|
||||||
{
|
{
|
||||||
s.MakeLower() ;
|
s.MakeLower() ;
|
||||||
for ( int i = 0 ; i < m_noItems ; ++i )
|
for ( int i = 0 ; i < m_noItems ; ++i )
|
||||||
|
@@ -308,7 +308,7 @@ int wxListBox::FindString(const wxString& st) const
|
|||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , false , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
if ( s.Left(1) = "*" && s.Length() > 1 )
|
if ( s.Left(1) == "*" && s.Length() > 1 )
|
||||||
{
|
{
|
||||||
s.MakeLower() ;
|
s.MakeLower() ;
|
||||||
for ( int i = 0 ; i < m_noItems ; ++i )
|
for ( int i = 0 ; i < m_noItems ; ++i )
|
||||||
|
Reference in New Issue
Block a user