]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/pen.cpp
Fillid in many more missing functions (such as Enable())
[wxWidgets.git] / src / gtk / pen.cpp
index b01208d5e71f8a8634b998f46531bc3e28c5a4b8..b50ec2063e359f4b69335178006a7b035791f068 100644 (file)
@@ -57,6 +57,7 @@ wxPen::wxPen( const wxColour &colour, int width, int style )
   M_PENDATA->m_width = width;
   M_PENDATA->m_style = style;
   M_PENDATA->m_colour = colour;
+  
   if (wxThePenList) wxThePenList->AddPen( this );
 }
 
@@ -66,6 +67,7 @@ wxPen::wxPen( const wxString &colourName, int width, int style )
   M_PENDATA->m_width = width;
   M_PENDATA->m_style = style;
   M_PENDATA->m_colour = colourName;
+  
   if (wxThePenList) wxThePenList->AddPen( this );
 }
 
@@ -79,6 +81,7 @@ wxPen::wxPen( const wxPen* pen )
 {
   UnRef();
   if (pen) Ref( *pen ); 
+  
   if (wxThePenList) wxThePenList->AddPen( this );
 }