Replace wxChar with wxStringCharType in wxPropertyGrid code.

This commit is contained in:
Artur Wieczorek
2015-06-04 22:51:34 +02:00
parent 5973ad196e
commit f7322af25e
3 changed files with 13 additions and 12 deletions

View File

@@ -544,7 +544,7 @@ wxPGProperty* wxPropertyGridInterface::GetPropertyByName( const wxString& name )
return p;
// Check if its "Property.SubProperty" format
int pos = name.Find(wxT('.'));
int pos = name.Find(wxS('.'));
if ( pos <= 0 )
return NULL;