]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/listbox.cpp
more fixes to HTML entities parsing when loading .hhk and .hhc
[wxWidgets.git] / src / mac / classic / listbox.cpp
index 8322a7a2f2e98643b062e46273b914445aa40f4c..a0d3e0548238634d174d503921fe3f9ba8840ba2 100644 (file)
@@ -401,6 +401,8 @@ void wxListBox::Delete(int N)
 
 int wxListBox::DoAppend(const wxString& item)
 {
+    InvalidateBestSize();
+
     int index = m_noItems ;
     m_stringArray.Add( item ) ;
     m_dataArray.Add( NULL );
@@ -595,6 +597,8 @@ void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
     wxCHECK_RET( pos >= 0 && pos <= m_noItems,
         wxT("invalid index in wxListBox::InsertItems") );
     
+    InvalidateBestSize();
+
     int nItems = items.GetCount();
     
     for ( int i = 0 ; i < nItems ; i++ )