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:
@@ -230,3 +230,15 @@ wxColour &wxPen::GetColour() const
|
|||||||
|
|
||||||
return M_PENDATA->m_colour;
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user