X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..e21a504837179fc2be49f72e03664c8d8cc82148:/include/wx/gtk/pen.h diff --git a/include/wx/gtk/pen.h b/include/wx/gtk/pen.h index e3529c6699..0649fe2473 100644 --- a/include/wx/gtk/pen.h +++ b/include/wx/gtk/pen.h @@ -40,7 +40,6 @@ class wxPen: public wxGDIObject wxPen(void); wxPen( const wxColour &colour, int width, int style ); - wxPen( const wxString &colourName, int width, int style ); wxPen( const wxPen& pen ); wxPen( const wxPen* pen ); ~wxPen(void); @@ -49,8 +48,7 @@ class wxPen: public wxGDIObject bool operator != ( const wxPen& pen ); void SetColour( const wxColour &colour ); - void SetColour( const wxString &colourName ); - void SetColour( const int red, const int green, const int blue ); + void SetColour( int red, int green, int blue ); void SetCap( int capStyle ); void SetJoin( int joinStyle ); void SetStyle( int style ); @@ -62,6 +60,8 @@ class wxPen: public wxGDIObject int GetWidth(void) const; bool Ok(void) const; + void Unshare(void); + // no data :-) };