// 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
/////////////////////////////////////////////////////////////////////////////
bool wxDC::Ok(void) const
{
- wxASSERT_MSG( !ok, "invalid display context" );
+ wxASSERT_MSG( m_ok, "invalid display context" );
return m_ok;
}
}
}
-void wxDC::DrawSpline( wxList *points )
-{
- DrawOpenSpline( points );
-}
-
void wxDC::DrawSpline( int n, wxPoint points[] )
{
wxList list;