]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/combocmn.cpp
remove old libpng 1.2.7
[wxWidgets.git] / src / common / combocmn.cpp
index 588772db18f6f42b712d9569ea5d3d967ba195d8..bf94d2253bea6662964fe755f98e10f5f30d8f5a 100644 (file)
@@ -2249,6 +2249,7 @@ void wxComboCtrlBase::SetValueWithEvent(const wxString& value, bool withEvent)
             m_ignoreEvtText++;
 
         m_text->SetValue(value);
+
         if ( !(m_iFlags & wxCC_NO_TEXT_AUTO_SELECT) )
             m_text->SelectAll();
     }
@@ -2261,7 +2262,8 @@ void wxComboCtrlBase::SetValueWithEvent(const wxString& value, bool withEvent)
 
         EnsurePopupControl();
 
-        m_popupInterface->SetStringValue(value);
+        if (m_popupInterface)
+            m_popupInterface->SetStringValue(value);
     }
 
     Refresh();