]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fontcmn.cpp
sockets work with wxDFB now
[wxWidgets.git] / src / common / fontcmn.cpp
index 0257058f806271276443956870eee449815c6400..236f10b00d9efccb9cefccf9ec5cc5fffb039ef2 100644 (file)
@@ -324,7 +324,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 m_refData == font.m_refData ||
+    return IsSameAs(font) ||
            (
             Ok() == font.Ok() &&
             GetPointSize() == font.GetPointSize() &&