X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..e06b0afba5b1acf36241d33982d5d88cccefa2e8:/include/wx/mac/carbon/dcscreen.h diff --git a/include/wx/mac/carbon/dcscreen.h b/include/wx/mac/carbon/dcscreen.h index c1da01e7ef..6b126f54bd 100644 --- a/include/wx/mac/carbon/dcscreen.h +++ b/include/wx/mac/carbon/dcscreen.h @@ -21,13 +21,15 @@ 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: + void* m_overlayWindow; }; #endif