]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/font.h
Last part from weak ref patch for event sink disconnection
[wxWidgets.git] / include / wx / font.h
index 9b87cafd11ec76dfc830a52c283ae3f8a5f824bf..3b808ac2bd2309e6d2b33d498d9c20ab11f47179 100644 (file)
@@ -155,13 +155,9 @@ public:
     // from the string representation of wxNativeFontInfo
     static wxFont *New(const wxString& strNativeFontDesc);
 
-    // was the font successfully created?
-    bool Ok() const { return IsOk(); }
-    bool IsOk() const { return m_refData != NULL; }
-
     // comparison
-    bool operator == (const wxFont& font) const;
-    bool operator != (const wxFont& font) const;
+    bool operator==(const wxFont& font) const;
+    bool operator!=(const wxFont& font) const { return !(*this == font); }
 
     // accessors: get the font characteristics
     virtual int GetPointSize() const = 0;