]> git.saurik.com Git - wxWidgets.git/commitdiff
Blind fix for Tinderbox build error.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 26 Oct 2006 10:29:23 +0000 (10:29 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 26 Oct 2006 10:29:23 +0000 (10:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/combog.cpp

index 0db207c1528740d9ca55c78e2b2a07e05700cc71..0987c8a8567a67187ae027cc96455ea8632bdaaa 100644 (file)
@@ -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();