X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/01111366c9b4ea40eee7f4b13ddfe6f6b9f886db..c19a8a9a7187281b757808e651358198352b8f11:/src/gtk1/dc.cpp diff --git a/src/gtk1/dc.cpp b/src/gtk1/dc.cpp index 3678494de4..d782330da8 100644 --- a/src/gtk1/dc.cpp +++ b/src/gtk1/dc.cpp @@ -3,7 +3,7 @@ // Purpose: // Author: Robert Roebling // RCS-ID: $Id$ -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Copyright: (c) 1998 Robert Roebling, Markus Holzem // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -93,10 +93,6 @@ void wxDC::DrawArc( long WXUNUSED(x1), long WXUNUSED(y1), long WXUNUSED(x2), lon { } -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 ); @@ -362,10 +358,15 @@ void wxDC::ComputeScaleAndOrigin(void) { // 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); +*/ } }