]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/fontutil.cpp
Add stubs for wxNativeFontInfo::{Get,Set}Strikethrough() to wxGTK.
[wxWidgets.git] / src / unix / fontutil.cpp
index 8a0fbb21939b403c4c36f496a437fc9906112874..625848636aed1f674dfc3056033f6e368520a514 100644 (file)
@@ -133,6 +133,11 @@ bool wxNativeFontInfo::GetUnderlined() const
     return false;
 }
 
+bool wxNativeFontInfo::GetStrikethrough() const
+{
+    return false;
+}
+
 wxString wxNativeFontInfo::GetFaceName() const
 {
     // the Pango "family" is the wx "face name"
@@ -815,6 +820,11 @@ void wxNativeFontInfo::SetUnderlined(bool WXUNUSED(underlined))
     // can't do this under X
 }
 
+void wxNativeFontInfo::SetStrikethrough(bool WXUNUSED(strikethrough))
+{
+    // this is not supported by Pango fonts neither
+}
+
 bool wxNativeFontInfo::SetFaceName(const wxString& facename)
 {
     SetXFontComponent(wxXLFD_FAMILY, facename);