X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..5d0fac27c4b2151b1ff3689cdb602bbaf10a4003:/include/wx/mac/carbon/dcscreen.h diff --git a/include/wx/mac/carbon/dcscreen.h b/include/wx/mac/carbon/dcscreen.h index c1da01e7ef..052f5fb7b8 100644 --- a/include/wx/mac/carbon/dcscreen.h +++ b/include/wx/mac/carbon/dcscreen.h @@ -21,13 +21,17 @@ class WXDLLEXPORT wxScreenDC: public wxWindowDC public: // Create a DC representing the whole screen wxScreenDC(); - ~wxScreenDC(); + virtual ~wxScreenDC(); // Compatibility with X's requirements for // drawing on top of all windows static bool StartDrawingOnTop(wxWindow* WXUNUSED(window)) { return TRUE; } static bool StartDrawingOnTop(wxRect* WXUNUSED(rect) = NULL) { return TRUE; } static bool EndDrawingOnTop() { return TRUE; } + private: +#if wxMAC_USE_CORE_GRAPHICS + void* m_overlayWindow; +#endif }; #endif