X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..f5e27805de786dbb3976782ba2a3365c27256031:/include/wx/gtk/pen.h diff --git a/include/wx/gtk/pen.h b/include/wx/gtk/pen.h index a0eaa2a59b..10ccf5e962 100644 --- a/include/wx/gtk/pen.h +++ b/include/wx/gtk/pen.h @@ -2,9 +2,8 @@ // Name: pen.h // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -40,7 +39,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,7 +47,6 @@ class wxPen: public wxGDIObject bool operator != ( const wxPen& pen ); void SetColour( const wxColour &colour ); - void SetColour( const wxString &colourName ); void SetColour( int red, int green, int blue ); void SetCap( int capStyle ); void SetJoin( int joinStyle ); @@ -62,6 +59,8 @@ class wxPen: public wxGDIObject int GetWidth(void) const; bool Ok(void) const; + void Unshare(void); + // no data :-) };