X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0e70f525fa60baefd9878758374b2019b804df82..e152afc3d45b72468b14ba15ab6badc19c735a70:/include/wx/os2/pen.h?ds=sidebyside diff --git a/include/wx/os2/pen.h b/include/wx/os2/pen.h index fe4c3460ef..2185169aff 100644 --- a/include/wx/os2/pen.h +++ b/include/wx/os2/pen.h @@ -52,11 +52,8 @@ public: wxPen( const wxBitmap& rStipple ,int nWidth ); - inline wxPen(const wxPen& rPen) { Ref(rPen); } ~wxPen(); - inline wxPen& operator = (const wxPen& rPen) - { if (*this == rPen) return (*this); Ref(rPen); return *this; } inline bool operator == (const wxPen& rPen) const { return m_refData == rPen.m_refData; } inline bool operator != (const wxPen& rPen) const @@ -68,10 +65,7 @@ public: // Override in order to recreate the pen // void SetColour(const wxColour& rColour); - void SetColour( unsigned char cRed - ,unsigned char cGreen - ,unsigned char cBlue - ); + void SetColour(unsigned char cRed, unsigned char cGreen, unsigned char cBlue); void SetWidth(int nWidth); void SetStyle(int nStyle); @@ -100,7 +94,7 @@ public: // Useful helper: create the brush resource // bool RealizeResource(void); - bool FreeResource(bool bForce = FALSE); + bool FreeResource(bool bForce = false); WXHANDLE GetResourceHandle(void); bool IsFree(void) const; void Unshare(void);