]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/popupwin.h
Some refresh optimizations.
[wxWidgets.git] / include / wx / gtk / popupwin.h
index ef0b43b49ff7f7026bd265d36517ec971e1e7e84..40ad14d7465c42a2ba9276d29e5b44a7aed2b00e 100644 (file)
@@ -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();