X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab171e95021482a8a0c0e24ebe050fa0181e7af0..115563867dac8edf57b6d2c6ae95910c7f277d77:/include/wx/dcscreen.h diff --git a/include/wx/dcscreen.h b/include/wx/dcscreen.h index f320205b8e..cc5a8832a9 100644 --- a/include/wx/dcscreen.h +++ b/include/wx/dcscreen.h @@ -22,6 +22,13 @@ class WXDLLIMPEXP_CORE wxScreenDC : public wxWindowDC public: wxScreenDC(); + 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) }; @@ -52,5 +59,6 @@ private: #include "wx/os2/dcscreen.h" #endif + #endif // _WX_DCSCREEN_H_BASE_