From dedead3227fb6481b80062ee0a6ce95566b81ff3 Mon Sep 17 00:00:00 2001 From: Chris Elliott Date: Fri, 20 Apr 2007 08:09:06 +0000 Subject: [PATCH] add const to avoid hiding warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dcsvg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/dcsvg.h b/include/wx/dcsvg.h index ac14323287..41a25b8082 100644 --- a/include/wx/dcsvg.h +++ b/include/wx/dcsvg.h @@ -248,10 +248,10 @@ class WXDLLIMPEXP_CORE wxSVGFileDC : public wxDC void GetClippingBox(wxCoord *WXUNUSED(x), wxCoord *WXUNUSED(y), wxCoord * WXUNUSED(width), wxCoord * WXUNUSED(height)) { wxASSERT_MSG (false, wxT("wxSVGFILEDC::GetClippingBox Call not yet implemented")); return ; } - int GetLogicalFunction() + int GetLogicalFunction() const { wxASSERT_MSG (false, wxT("wxSVGFILEDC::GetLogicalFunction() Call not implemented")); return wxCOPY ; } - int GetMapMode() ; + int GetMapMode() const ; bool GetPixel(wxCoord x, wxCoord y, wxColour *colour) { return DoGetPixel (x, y, colour) ; } -- 2.47.2