]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontmap.cpp
Always send an erase event to satisfy some users...
[wxWidgets.git] / src / common / fontmap.cpp
index f40ea75e954a4d131fd43f072e43d0e8f2072304..6ab97b4c2f5416c7bfe8fd95f3301df03549b3cd 100644 (file)
@@ -479,7 +479,7 @@ wxFontEncoding wxFontMapper::CharsetToEncoding(const wxString& charset,
         cs.Trim(FALSE);
 
         // discard the optional quotes
-        if ( !!cs )
+        if ( !cs.empty() )
         {
             if ( cs[0u] == _T('"') && cs.Last() == _T('"') )
             {
@@ -489,7 +489,7 @@ wxFontEncoding wxFontMapper::CharsetToEncoding(const wxString& charset,
 
         cs.MakeUpper();
 
-        if ( !cs || cs == wxT("US-ASCII") )
+        if ( cs.empty() || cs == _T("US-ASCII") )
         {
             encoding = wxFONTENCODING_DEFAULT;
         }