From: Vadim Zeitlin Date: Tue, 18 Mar 2008 13:27:10 +0000 (+0000) Subject: provide stubs for Get/SetStippled() to fix the build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/04edbb234346de7b3ec7234fa733f67adf80f569 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 --- 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; +} +