]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/font.cpp
Explain various printing backends in GTK+
[wxWidgets.git] / src / cocoa / font.cpp
index 61c71aaac047803a1ae902760abb825767a41a92..bfbed70f383bba9336cc9e8016613ba4ac883d69 100644 (file)
@@ -37,6 +37,8 @@ wxFontRefData::~wxFontRefData()
     // TODO: delete font data
 }
 
+#define M_FONTDATA ((wxFontRefData*)m_refData)
+
 bool wxFont::Create(const wxNativeFontInfo&)
 {
     return false;
@@ -58,7 +60,10 @@ int wxFont::GetPointSize() const
 
 bool wxFont::GetUnderlined() const
 {
-    return false;
+    if(M_FONTDATA)
+        return M_FONTDATA->m_underlined;
+    else
+        return false;
 }
 
 int wxFont::GetStyle() const