// TODO: delete font data
}
+#define M_FONTDATA ((wxFontRefData*)m_refData)
+
bool wxFont::Create(const wxNativeFontInfo&)
{
return false;
bool wxFont::GetUnderlined() const
{
- return false;
+ if(M_FONTDATA)
+ return M_FONTDATA->m_underlined;
+ else
+ return false;
}
int wxFont::GetStyle() const