]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/pen.h
optimize wxFormatStringArgumentFinder<T> for strings and make it work correctly for...
[wxWidgets.git] / include / wx / cocoa / pen.h
index 3ee5c2f3499c9a11e6b69177847daa41be14e4f7..279f3d38949b5d27434e0b0bedb9a70e41726119 100644 (file)
@@ -46,7 +46,7 @@ public:
     void SetJoin(wxPenJoin join);
     void SetCap(wxPenCap cap);
 
-    wxColour& GetColour() const;
+    wxColour GetColour() const;
     int GetWidth() const;
     wxPenStyle GetStyle() const;
     wxPenJoin GetJoin() const;
@@ -54,6 +54,12 @@ public:
     int GetDashes(wxDash **ptr) const;
     wxBitmap *GetStipple() const;
 
+#if FUTURE_WXWIN_COMPATIBILITY_3_0
+    wxDEPRECATED_FUTURE( void SetStyle(int style) )
+        { SetStyle((wxPenStyle)style); }
+#endif
+
+    // Cocoa-specific
     WX_NSColor GetNSColor();
     int GetCocoaLineDash(const CGFloat **pattern);