]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/pen.cpp
regenerated configure from new configure.in
[wxWidgets.git] / src / gtk1 / pen.cpp
index 0a785a8deea700397375a82e2074e5c37aeee60c..59e2c3e06d47f545bbed6df8c7fddcaa4ad46334 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        pen.cpp
 // 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
 /////////////////////////////////////////////////////////////////////////////
 
@@ -24,6 +23,7 @@ class wxPenRefData: public wxObjectRefData
   public:
   
     wxPenRefData(void);
+    wxPenRefData(const wxPenRefData& data);
   
     int        m_width;
     int        m_style;
@@ -70,16 +70,6 @@ wxPen::wxPen( const wxColour &colour, int width, int style )
   if (wxThePenList) wxThePenList->AddPen( this );
 }
 
-wxPen::wxPen( const wxString &colourName, int width, int style )
-{
-  m_refData = new wxPenRefData();
-  M_PENDATA->m_width = width;
-  M_PENDATA->m_style = style;
-  M_PENDATA->m_colour = colourName;
-  
-  if (wxThePenList) wxThePenList->AddPen( this );
-}
-
 wxPen::wxPen( const wxPen& pen )
 {
   Ref( pen );
@@ -122,12 +112,6 @@ void wxPen::SetColour( const wxColour &colour )
   M_PENDATA->m_colour = colour;
 }
 
-void wxPen::SetColour( const wxString &colourName )
-{
-  Unshare();
-  M_PENDATA->m_colour = colourName;
-}
-
 void wxPen::SetColour( int red, int green, int blue )
 {
   Unshare();