]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontcmn.cpp
added alpha channel support to wxDFB's wxBitmap
[wxWidgets.git] / src / common / fontcmn.cpp
index f83bb4701fa6cf4c603f37bf97c91b33d15eb362..4fcd211e5350148f8f2434b45e3ad8edab2c40ca 100644 (file)
@@ -303,7 +303,6 @@ bool wxFontBase::SetNativeFontInfo(const wxString& info)
         return true;
     }
 
-    UnRef();
     return false;
 }
 
@@ -316,7 +315,6 @@ bool wxFontBase::SetNativeFontInfoUserDesc(const wxString& info)
         return true;
     }
 
-    UnRef();
     return false;
 }
 
@@ -324,7 +322,7 @@ bool wxFontBase::operator==(const wxFont& font) const
 {
     // either it is the same font, i.e. they share the same common data or they
     // have different ref datas but still describe the same font
-    return GetFontData() == font.GetFontData() ||
+    return IsSameAs(font) ||
            (
             Ok() == font.Ok() &&
             GetPointSize() == font.GetPointSize() &&