]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dcsvg.h
RCS-IDs
[wxWidgets.git] / interface / wx / dcsvg.h
index bae993d5a35338513a9c9c4ea8d9f7b1965aa760..35366122169e1b277df45660599d2f53f51b26e6 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxSVGFileDC
-    @wxheader{dcsvg.h}
 
     A wxSVGFileDC is a device context onto which graphics and text can be
     drawn, and the output produced as a vector file, in SVG format (see the W3C
@@ -56,7 +55,7 @@ public:
     /**
         Destructor.
     */
-    ~wxSVGFileDC();
+    virtual ~wxSVGFileDC();
 
     /**
         Copies from a source DC to this DC, specifying the destination
@@ -280,14 +279,13 @@ public:
 
     /**
         Draws a spline between all given control points, using the current pen.
-        The programmer is responsible for deleting the list of points. The
-        spline is drawn using a series of lines, using an algorithm taken from
+        The programmer is responsible for deleting the list of points.
+        The spline is drawn using a series of lines, using an algorithm taken from
         the X drawing program "XFIG".
     */
     void DrawSpline(wxList* points);
+
     /**
-        @param string
-            The text string to measure.
         Draws a three-point spline using the current pen.
     */
     void DrawSpline(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2,
@@ -418,7 +416,7 @@ public:
         @see SetTextBackground()
     */
     wxColour GetTextBackground() const;
-    const wxColour GetTextBackground() const;
+    const wxColour& GetTextBackground() const;
     //@}
 
     /**
@@ -436,10 +434,10 @@ public:
         @param externalLeading
             Any extra vertical space added to the font by the font designer
             (usually is zero).
-
-        The optional parameter @a font specifies an alternative to the
-        currently selected font: but note that this does not yet work under
-        Windows, so you need to set a font for the device context first.
+        @param font
+            Specifies an alternative to the currently selected font: but note
+            that this does not yet work under Windows, so you need to set a
+            font for the device context first.
 
         @see wxFont, SetFont()
     */