]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontcmn.cpp
attempt to get the 'new focus' window parameter of a focus kill event set correctly
[wxWidgets.git] / src / common / fontcmn.cpp
index fed694a96d433a7217a9f106c897c36d2733d777..52936bfbe16e094a8499ffeb7ff3a0befe2475b9 100644 (file)
@@ -603,12 +603,12 @@ void wxNativeFontInfo::SetFaceName(const wxArrayString& facenames)
 bool wxNativeFontInfo::FromString(const wxString& s)
 {
     long l;
-    short version;
+    unsigned long version;
 
     wxStringTokenizer tokenizer(s, wxT(";"));
 
     wxString token = tokenizer.GetNextToken();
-    if ( !token.ToLong(&version) || version < 0 || version > 1 )
+    if ( !token.ToULong(&version) || version > 1 )
         return false;
 
     token = tokenizer.GetNextToken();