]> git.saurik.com Git - wxWidgets.git/commitdiff
Also add wxNativeFontInfo::SetStrikethrough() stub for wxGTK2.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Feb 2012 16:26:39 +0000 (16:26 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Feb 2012 16:26:39 +0000 (16:26 +0000)
This should have been done in r70563 which added the stub to wxGTK1 part only.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70566 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/fontutil.cpp

index 625848636aed1f674dfc3056033f6e368520a514..8ed33684fd1e58fae80467ab4183c14a043e3d40 100644 (file)
@@ -272,6 +272,11 @@ void wxNativeFontInfo::SetUnderlined(bool WXUNUSED(underlined))
     wxFAIL_MSG( "not implemented" );
 }
 
+void wxNativeFontInfo::SetStrikethrough(bool WXUNUSED(strikethrough))
+{
+    wxFAIL_MSG( "not implemented" );
+}
+
 bool wxNativeFontInfo::SetFaceName(const wxString& facename)
 {
     pango_font_description_set_family(description, wxPANGO_CONV(facename));