X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f7b34a878bbcb2f71a0c7694e2a3bec51460218..12f190b09c5c1e25cfd8a6156d8d43f0b6647521:/include/wx/mgl/dcscreen.h diff --git a/include/wx/mgl/dcscreen.h b/include/wx/mgl/dcscreen.h index b1c429aa17..08c5e7bbca 100644 --- a/include/wx/mgl/dcscreen.h +++ b/include/wx/mgl/dcscreen.h @@ -3,7 +3,7 @@ // Purpose: // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) +// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -26,16 +26,15 @@ class WXDLLEXPORT wxScreenDC; // wxScreenDC //----------------------------------------------------------------------------- -//FIXME_MGL -class WXDLLEXPORT wxScreenDC: public wxPaintDC +class WXDLLEXPORT wxScreenDC: public wxDC { public: - wxScreenDC() {} - ~wxScreenDC() {} + wxScreenDC(); + ~wxScreenDC(); - static bool StartDrawingOnTop( wxWindow *window ) {} - static bool StartDrawingOnTop( wxRect *rect = (wxRect *) NULL ) {} - static bool EndDrawingOnTop() {} + static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; } + static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; } + static bool EndDrawingOnTop() { return TRUE; } private: DECLARE_DYNAMIC_CLASS(wxScreenDC)