]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
Fix wrong tab order in wxAuiNotebook after dragging.
[wxWidgets.git] / include / wx / dc.h
index c6ff1fa3a28c65feaa416ab84ab65b4cae8f4c67..34f58e266258b14b9217967f81c14a118c62e9d3 100644 (file)
@@ -433,8 +433,12 @@ public:
 
     // clipping
 
 
     // clipping
 
+    // Note that this pure virtual method has an implementation that updates
+    // the values returned by DoGetClippingBox() and so can be called from the
+    // derived class overridden version if it makes sense (i.e. if the clipping
+    // box coordinates are not already updated in some other way).
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
-                                     wxCoord width, wxCoord height) = 0;
+                                     wxCoord w, wxCoord h) = 0;
 
     // NB: this function works with device coordinates, not the logical ones!
     virtual void DoSetDeviceClippingRegion(const wxRegion& region) = 0;
 
     // NB: this function works with device coordinates, not the logical ones!
     virtual void DoSetDeviceClippingRegion(const wxRegion& region) = 0;