]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textcmn.cpp
fix warnings
[wxWidgets.git] / src / common / textcmn.cpp
index 1e0a0a0f5677a9a6363fb1c8b59f76e2fcd95d77..c69ba3aea19ae1b29dfefeac3d2f926f058706ae 100644 (file)
@@ -297,8 +297,11 @@ bool wxTextAttr::EqPartial(const wxTextAttr& attr, int flags) const
 }
 
 // Create font from font attributes.
-wxFont wxTextAttr::CreateFont() const
+wxFont wxTextAttr::GetFont() const
 {
+    if ( !HasFont() )
+        return wxNullFont;
+
     int fontSize = 10;
     if (HasFontSize())
         fontSize = GetFontSize();