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; +} +