]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/dc.cpp
regenerated configure from new configure.in
[wxWidgets.git] / src / gtk1 / dc.cpp
index a7c77998bc209455c7c40d1b49c212d01d1f2c6b..a519e5fd40f08645fbb77aeac2a6eec008db5365 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        dc.cpp
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
 // RCS-ID:      $Id$
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Copyright:   (c) 1998 Robert Roebling, Markus Holzem
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -85,7 +84,7 @@ wxDC::~wxDC(void)
 
 bool wxDC::Ok(void) const 
 { 
-  wxASSERT_MSG( !ok, "invalid display context" );
+  wxASSERT_MSG( m_ok, "invalid display context" );
   return m_ok; 
 }
 
@@ -151,11 +150,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;