]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dcsvg.cpp
added inline plural form of wxGetTranslation to wxUSE_INTL=0 case for use with non...
[wxWidgets.git] / src / common / dcsvg.cpp
index 330b76995fa2ddfc2fdc3ab0446f7839ff07b606..79e0e48297570f658418646f4ae0ef3af83f7c07 100644 (file)
@@ -30,7 +30,7 @@
 #define semicolon      wxString(wxT(";"))
 #define wx_round(a)    (int)((a)+.5)
 
-static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } ;
+static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; }
 
 wxString wxColStr ( wxColour c )
 {
@@ -137,17 +137,17 @@ wxSVGFileDC::wxSVGFileDC (wxString f)
 {
     // quarter 640x480 screen display at 72 dpi
     Init (f,320,240,72.0);
-};
+}
 
 wxSVGFileDC::wxSVGFileDC (wxString f, int Width, int Height)
 {
     Init (f,Width,Height,72.0);
-};
+}
 
 wxSVGFileDC::wxSVGFileDC (wxString f, int Width, int Height, float dpi)
 {
     Init (f,Width,Height,dpi);
-};
+}
 
 wxSVGFileDC::~wxSVGFileDC()
 {
@@ -172,7 +172,7 @@ void wxSVGFileDC::DoDrawLine (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2)
     CalcBoundingBox(x1, y1) ;
     CalcBoundingBox(x2, y2) ;
     return;
-};
+}
 
 void wxSVGFileDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset , wxCoord yoffset )
 {
@@ -458,7 +458,7 @@ void wxSVGFileDC::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,doub
 }
 
 
-void wxSVGFileDC::DoGetTextExtent(const wxString& string, wxCoord *w, wxCoord *h, wxCoord *descent , wxCoord *externalLeading , wxFont *font) const
+void wxSVGFileDC::DoGetTextExtent(const wxString& string, wxCoord *w, wxCoord *h, wxCoord *descent , wxCoord *externalLeading , const wxFont *font) const
 
 {
     wxScreenDC sDC ;
@@ -607,7 +607,7 @@ void wxSVGFileDC::ComputeScaleAndOrigin()
 }
 
 
-int wxSVGFileDC::GetMapMode()
+int wxSVGFileDC::GetMapMode() const
 {
     return m_mappingMode ;
 }