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
This commit is contained in:
Vadim Zeitlin 2008-03-18 13:27:10 +00:00
parent 9f91505d95
commit 04edbb2343

View File

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