]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Fix so OGL can build without wxBuffer
[wxWidgets.git] / include / wx / gdicmn.h
index 55c7105a0b97d665d407f243b63b5384ecccad70..15a0c8d25b2551c842e0602b4430970597754ba1 100644 (file)
@@ -216,7 +216,8 @@ public:
     wxSize operator+(const wxSize& sz) { return wxSize(x + sz.x, y + sz.y); }
     wxSize operator-(const wxSize& sz) { return wxSize(x - sz.x, y - sz.y); }
 
-    // accessors    void Set(int xx, int yy) { x = xx; y = yy; }
+    // accessors
+    void Set(int xx, int yy) { x = xx; y = yy; }
     void SetWidth(int w) { x = w; }
     void SetHeight(int h) { y = h; }