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:
@@ -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();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user