]> git.saurik.com Git - wxWidgets.git/commitdiff
add const to avoid hiding warning
authorChris Elliott <biol75@york.ac.uk>
Fri, 20 Apr 2007 08:09:06 +0000 (08:09 +0000)
committerChris Elliott <biol75@york.ac.uk>
Fri, 20 Apr 2007 08:09:06 +0000 (08:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dcsvg.h

index ac14323287d239a3eb22a5a9eca227cf64718d4b..41a25b8082d8b8fd2ae8fb7a3981771dd7b098e7 100644 (file)
@@ -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) ; }