From e9270aaac876dd258be5ff59446e7083ab26887e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 11 Feb 2012 16:26:39 +0000 Subject: [PATCH] Also add wxNativeFontInfo::SetStrikethrough() stub for wxGTK2. 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 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/unix/fontutil.cpp b/src/unix/fontutil.cpp index 625848636a..8ed33684fd 100644 --- a/src/unix/fontutil.cpp +++ b/src/unix/fontutil.cpp @@ -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)); -- 2.49.0