Don't assert when Clear() is called, better to ignore it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23767 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2003-09-21 00:58:27 +00:00
parent 2bbc1b2855
commit f632aa1e05

View File

@ -386,7 +386,9 @@ void wxPostScriptDC::DestroyClippingRegion()
void wxPostScriptDC::Clear()
{
wxFAIL_MSG( wxT("wxPostScriptDC::Clear not implemented.") );
// This should fail silently to avoid unnecessary
// asserts
// wxFAIL_MSG( wxT("wxPostScriptDC::Clear not implemented.") );
}
bool wxPostScriptDC::DoFloodFill (wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), const wxColour &WXUNUSED(col), int WXUNUSED(style))