]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/combog.cpp
Add wxFS_SEEKABLE open flag.
[wxWidgets.git] / 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();