From 04edbb234346de7b3ec7234fa733f67adf80f569 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Mar 2008 13:27:10 +0000 Subject: [PATCH] provide stubs for Get/SetStippled() to fix the build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52611 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/pen.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/gtk/pen.cpp b/src/gtk/pen.cpp index 5674ffd9ec..f7412d49b4 100644 --- a/src/gtk/pen.cpp +++ b/src/gtk/pen.cpp @@ -230,3 +230,15 @@ wxColour &wxPen::GetColour() const return M_PENDATA->m_colour; } + +// stippled pens are not supported by wxGTK +void wxPen::SetStipple(const wxBitmap& WXUNUSED(stipple)) +{ + wxFAIL_MSG( "stippled pens not supported" ); +} + +wxBitmap *wxPen::GetStipple() const +{ + return NULL; +} + -- 2.45.2