]> git.saurik.com Git - wxWidgets.git/commitdiff
removed spurious semicolons
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 9 Apr 2007 06:50:28 +0000 (06:50 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 9 Apr 2007 06:50:28 +0000 (06:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h
src/common/dcsvg.cpp

index a931a09faefbc2e1d8935beae2a93a71075d559a..a39ea5636b4517937ad4d0fe80fdb7bdb50ece99 100644 (file)
@@ -2335,7 +2335,7 @@ inline wxCStrData::~wxCStrData()
 inline wxCStrData::operator bool() const
 {
     return !m_str->empty();
-};
+}
 
 // simple cases for AsChar() and AsWChar(), the complicated ones are
 // in string.cpp
index 330b76995fa2ddfc2fdc3ab0446f7839ff07b606..0fc94d97def7f319be23944c7fe9c9b27a38d40b 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 )
 {