]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Use the OOR typemap for wxTreeCtrls too.
[wxWidgets.git] / include / wx / gdicmn.h
index 55c7105a0b97d665d407f243b63b5384ecccad70..d8d1bb44d660012fdc37b03d71abb2906e68485c 100644 (file)
@@ -90,6 +90,7 @@ enum wxStockCursor
 {
     wxCURSOR_NONE,          // should be 0
     wxCURSOR_ARROW,
+    wxCURSOR_RIGHT_ARROW,
     wxCURSOR_BULLSEYE,
     wxCURSOR_CHAR,
     wxCURSOR_CROSS,
@@ -216,7 +217,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; }