X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/80fdcdb90ef779185492dab676d461fc34933312..06e56e62b9ab3a4ee66d7013c978128e5021f4e2:/src/osx/carbon/popupwin.cpp diff --git a/src/osx/carbon/popupwin.cpp b/src/osx/carbon/popupwin.cpp index 5f73691371..82488c73ce 100644 --- a/src/osx/carbon/popupwin.cpp +++ b/src/osx/carbon/popupwin.cpp @@ -56,25 +56,4 @@ bool wxPopupWindow::Create(wxWindow *parent, int flags) } -bool wxPopupWindow::Show(bool show) -{ - if ( !wxWindow::Show(show) ) - return false; - - if ( m_nowpeer && show) - m_nowpeer->ShowWithoutActivating(); - else if ( m_nowpeer ) - m_nowpeer->Show(false); - - if ( show ) - { - // because apps expect a size event to occur at this moment - wxSizeEvent event(GetSize() , m_windowId); - event.SetEventObject(this); - HandleWindowEvent(event); - } - - return true; -} - #endif // #if wxUSE_POPUPWIN