Remove unnecessary clipping virtual methods from wxSVGFileDCImpl
These methods seem to be useless as they're never called, only the corresponding DoXXX() methods are used by wxDC.
This commit is contained in:
@@ -86,23 +86,11 @@ public:
|
|||||||
virtual wxCoord GetCharHeight() const wxOVERRIDE;
|
virtual wxCoord GetCharHeight() const wxOVERRIDE;
|
||||||
virtual wxCoord GetCharWidth() const wxOVERRIDE;
|
virtual wxCoord GetCharWidth() const wxOVERRIDE;
|
||||||
|
|
||||||
virtual void SetClippingRegion(wxCoord x, wxCoord y,
|
|
||||||
wxCoord w, wxCoord h)
|
|
||||||
{
|
|
||||||
DoSetClippingRegion(x, y, w, h);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void SetPalette(const wxPalette& WXUNUSED(palette)) wxOVERRIDE
|
virtual void SetPalette(const wxPalette& WXUNUSED(palette)) wxOVERRIDE
|
||||||
{
|
{
|
||||||
wxFAIL_MSG(wxT("wxSVGFILEDC::SetPalette not implemented"));
|
wxFAIL_MSG(wxT("wxSVGFILEDC::SetPalette not implemented"));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void GetClippingBox(wxCoord *x, wxCoord *y,
|
|
||||||
wxCoord *w, wxCoord *h)
|
|
||||||
{
|
|
||||||
DoGetClippingBox(x, y, w, h);
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void SetLogicalFunction(wxRasterOperationMode WXUNUSED(function)) wxOVERRIDE
|
virtual void SetLogicalFunction(wxRasterOperationMode WXUNUSED(function)) wxOVERRIDE
|
||||||
{
|
{
|
||||||
wxFAIL_MSG(wxT("wxSVGFILEDC::SetLogicalFunction Call not implemented"));
|
wxFAIL_MSG(wxT("wxSVGFILEDC::SetLogicalFunction Call not implemented"));
|
||||||
|
Reference in New Issue
Block a user