Blind fix for Tinderbox build error.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-10-26 10:29:23 +00:00
parent 9da34e211e
commit a305d600e2

View File

@@ -436,7 +436,7 @@ bool wxGenericComboCtrl::PerformAction(const wxControlAction& action,
bool processed = false; bool processed = false;
if ( action == wxACTION_COMBOBOX_POPUP ) if ( action == wxACTION_COMBOBOX_POPUP )
{ {
if ( !m_isPopupShown ) if ( !IsPopupShown() )
{ {
ShowPopup(); ShowPopup();
@@ -445,7 +445,7 @@ bool wxGenericComboCtrl::PerformAction(const wxControlAction& action,
} }
else if ( action == wxACTION_COMBOBOX_DISMISS ) else if ( action == wxACTION_COMBOBOX_DISMISS )
{ {
if ( m_isPopupShown ) if ( IsPopupShown() )
{ {
HidePopup(); HidePopup();