]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/popupwin.h
Fix memory leak by letting the base class version handle the
[wxWidgets.git] / include / wx / gtk1 / popupwin.h
index ef0b43b49ff7f7026bd265d36517ec971e1e7e84..ab7ecfdd1d810273e7dcb95f6771dce9f1ffd459 100644 (file)
@@ -5,13 +5,13 @@
 // Created:
 // Id:          $Id$
 // Copyright:   (c) 2001 Robert Roebling
-// Licence:     wxWindows licence
+// Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __GTKPOPUPWINH__
 #define __GTKPOPUPWINH__
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "popupwin.h"
 #endif
 
@@ -27,17 +27,19 @@ class wxPopupWindow: public wxPopupWindowBase
 {
 public:
     wxPopupWindow() { }
+    virtual ~wxPopupWindow();
 
-    wxPopupWindow(wxWindow *parent) { (void)Create(parent); }
+    wxPopupWindow(wxWindow *parent, int flags = wxBORDER_NONE)
+        { (void)Create(parent, flags); }
     bool Create(wxWindow *parent, int flags = wxBORDER_NONE);
 
     virtual bool Show( bool show = TRUE );
-    
+
     // implementation
     // --------------
 
     virtual void DoMoveWindow(int x, int y, int width, int height);
-    
+
     virtual void OnInternalIdle();