From: Włodzimierz Skiba Date: Thu, 26 Oct 2006 10:29:23 +0000 (+0000) Subject: Blind fix for Tinderbox build error. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a305d600e2b4b233c9263abacc39e6da88c0171e?ds=inline Blind fix for Tinderbox build error. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/combog.cpp b/src/generic/combog.cpp index 0db207c152..0987c8a856 100644 --- a/src/generic/combog.cpp +++ b/src/generic/combog.cpp @@ -436,7 +436,7 @@ bool wxGenericComboCtrl::PerformAction(const wxControlAction& action, bool processed = false; if ( action == wxACTION_COMBOBOX_POPUP ) { - if ( !m_isPopupShown ) + if ( !IsPopupShown() ) { ShowPopup(); @@ -445,7 +445,7 @@ bool wxGenericComboCtrl::PerformAction(const wxControlAction& action, } else if ( action == wxACTION_COMBOBOX_DISMISS ) { - if ( m_isPopupShown ) + if ( IsPopupShown() ) { HidePopup();