]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/dc.cpp
Now even wxRadioButton works
[wxWidgets.git] / src / stubs / dc.cpp
index 4cfe7305cc064d5075db6648e26af22e27b31ef3..642dc1edc56d18b4258eaf296c045fb90c39ffdd 100644 (file)
@@ -34,8 +34,6 @@ IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject)
 // wxDC
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_ABSTRACT_CLASS(wxDC,wxObject)
-
 wxDC::wxDC(void)
 {
   m_ok = FALSE;
@@ -148,11 +146,6 @@ void wxDC::DrawSpline( long x1, long y1, long x2, long y2, long x3, long y3 )
   };
 };
 
-void wxDC::DrawSpline( wxList *points )
-{
-  DrawOpenSpline( points );
-};
-
 void wxDC::DrawSpline( int n, wxPoint points[] )
 {
   wxList list;
@@ -383,10 +376,10 @@ void wxDC::ComputeScaleAndOrigin(void)
   {
     // this is a bit artificial, but we need to force wxDC to think
     // the pen has changed
-    wxPen* pen = GetPen();
+    wxPen* pen = GetPen();
     wxPen tempPen;
     m_pen = tempPen;
-    SetPen(pen);
+    SetPen(pen);
   }
 };