]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dcscreen.h
Fix memory leak by letting the base class version handle the
[wxWidgets.git] / include / wx / msw / dcscreen.h
index f46d6364818ca27438e0325e1a3ad2a0b596b110..eccf1d7847a6bb258d91147fc0738579cd271563 100644 (file)
@@ -6,13 +6,13 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
-// Licence:     wxWindows licence
+// Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_DCSCREEN_H_
 #define _WX_DCSCREEN_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "dcscreen.h"
 #endif
 
@@ -27,10 +27,13 @@ public:
     // 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(void) { return TRUE; }
+    static bool EndDrawingOnTop() { return TRUE; }
+
+protected:
+    virtual void DoGetSize(int *width, int *height) const;
 
 private:
-    DECLARE_DYNAMIC_CLASS(wxScreenDC)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxScreenDC)
 };
 
 #endif