]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/gdiobj.h
Fix memory leak by letting the base class version handle the
[wxWidgets.git] / include / wx / mgl / gdiobj.h
index d17d4aedaa5d7da61a2f49f4d8ef9a126a64c4ae..6281cee51dc40458010d803cedd256e58faa3a81 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_GDIOBJ_H_
 #define _WX_GDIOBJ_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "gdiobj.h"
 #endif
 
@@ -36,7 +36,7 @@ class WXDLLEXPORT wxGDIRefData : public wxObjectRefData
 class WXDLLEXPORT wxGDIObject : public wxObject
 {
 public:
-    wxGDIObject() {}
+    wxGDIObject() { m_visible = FALSE; }
 
     virtual bool GetVisible() { return m_visible; }
     virtual void SetVisible( bool visible ) { m_visible = visible; }
@@ -51,5 +51,4 @@ private:
     DECLARE_DYNAMIC_CLASS(wxGDIObject)
 };
 
-#endif
-    // _WX_GDIOBJ_H_
+#endif // _WX_GDIOBJ_H_