]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/font.cpp
add wx/univ/tglbtn.h to wxUniv headers
[wxWidgets.git] / src / cocoa / font.cpp
index 7b2bbfecea7efb8ad1746dc8fb772f6eee30d9fb..bfbed70f383bba9336cc9e8016613ba4ac883d69 100644 (file)
@@ -37,7 +37,7 @@ wxFontRefData::~wxFontRefData()
     // TODO: delete font data
 }
 
-#define M_FONTDATA (wxFontRefData*)m_refData)
+#define M_FONTDATA ((wxFontRefData*)m_refData)
 
 bool wxFont::Create(const wxNativeFontInfo&)
 {
@@ -60,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