]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
wxAnimationCtrl fix to display inactive bitmap at start (patch 1590192)
[wxWidgets.git] / include / wx / gdicmn.h
index a3ff41b1c4e388e54fc0b708bec679d6b016a075..7accd3a796985f6ad033c4149adb15cd32c41883 100644 (file)
@@ -239,8 +239,8 @@ public:
     void DecBy(int d) { DecBy(d, d); }
 
 
-    void Scale(float xscale, float yscale)
-        { x = (int)(x*xscale); y = (int)(y*yscale); }
+    wxSize& Scale(float xscale, float yscale)
+        { x = (int)(x*xscale); y = (int)(y*yscale); return *this; }
 
     // accessors
     void Set(int xx, int yy) { x = xx; y = yy; }