X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6522713c7527e5f683a107dff8f40e3ea19a4745..2d9c0e97c580cff977d75760dc0d82c5852eec2c:/include/wx/gtk/popupwin.h diff --git a/include/wx/gtk/popupwin.h b/include/wx/gtk/popupwin.h index ef0b43b49f..46a00922d3 100644 --- a/include/wx/gtk/popupwin.h +++ b/include/wx/gtk/popupwin.h @@ -11,7 +11,7 @@ #ifndef __GTKPOPUPWINH__ #define __GTKPOPUPWINH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #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();