// 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
/////////////////////////////////////////////////////////////////////////////
{
}
-void wxDC::DrawIcon( const wxIcon &WXUNUSED(icon), long WXUNUSED(x), long WXUNUSED(y), bool WXUNUSED(useMask) )
-{
-}
-
void wxDC::DrawPoint( wxPoint& point )
{
DrawPoint( point.x, point.y );
{
// this is a bit artificial, but we need to force wxDC to think
// the pen has changed
+ // Using this code, wxDC will ignore the new settings
+ // so it's complete non-sense, Robert Roebling TODO!!
+ // It even gives an Assert, Robert Roebling
+/*
wxPen* pen = GetPen();
wxPen tempPen;
m_pen = tempPen;
SetPen(pen);
+*/
}
}