]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/font.h
Fixes for semicolons, commas and wxSTRING_MAXLEN from Wlodek Szafran.
[wxWidgets.git] / include / wx / font.h
index 8cb6a7e421abf57f18f5cf88f0725e2c02c60967..5d890e61765de4dcc791102ae8e9154cf150f029 100644 (file)
@@ -157,7 +157,8 @@ public:
     static wxFont *New(const wxString& strNativeFontDesc);
 
     // was the font successfully created?
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     // comparison
     bool operator == (const wxFont& font) const;