X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/46562151eb21235344768ea4b53c204d0c03fcee..900ca9b89ac66740884f6d8d2b5b04ffca1bb3f7:/include/wx/cocoa/pen.h?ds=inline diff --git a/include/wx/cocoa/pen.h b/include/wx/cocoa/pen.h index 2b71f91e0c..236c326b70 100644 --- a/include/wx/cocoa/pen.h +++ b/include/wx/cocoa/pen.h @@ -28,17 +28,12 @@ public: wxPen(); wxPen(const wxColour& col, int width = 1, int style = wxSOLID); wxPen(const wxBitmap& stipple, int width); - wxPen(const wxPen& pen) - : wxGDIObject() - { Ref(pen); } ~wxPen(); // wxObjectRefData wxObjectRefData *CreateRefData() const; wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; - inline wxPen& operator = (const wxPen& pen) - { if (*this == pen) return (*this); Ref(pen); return *this; } inline bool operator == (const wxPen& pen) const { return m_refData == pen.m_refData; } inline bool operator != (const wxPen& pen) const @@ -47,7 +42,7 @@ public: virtual bool Ok() const { return (m_refData != NULL) ; } void SetColour(const wxColour& col) ; - void SetColour(const unsigned char r, const unsigned char g, const unsigned char b) ; + void SetColour(unsigned char r, unsigned char g, unsigned char b) ; void SetWidth(int width); void SetStyle(int style);