Patch #1203934: enable best size caching for MSW widgets

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-05-18 02:23:01 +00:00
parent 3de6964a9f
commit 31582e4e11
15 changed files with 63 additions and 16 deletions

View File

@@ -236,6 +236,7 @@ int wxChoice::DoAppend(const wxString& item)
UpdateVisibleHeight();
}
InvalidateBestSize();
return n;
}
@@ -255,6 +256,7 @@ int wxChoice::DoInsert(const wxString& item, int pos)
UpdateVisibleHeight();
}
InvalidateBestSize();
return n;
}
@@ -271,6 +273,8 @@ void wxChoice::Delete(int n)
if ( !IsFrozen() )
UpdateVisibleHeight();
InvalidateBestSize();
}
void wxChoice::Clear()
@@ -281,6 +285,8 @@ void wxChoice::Clear()
if ( !IsFrozen() )
UpdateVisibleHeight();
InvalidateBestSize();
}
void wxChoice::Free()
@@ -383,6 +389,8 @@ void wxChoice::SetString(int n, const wxString& s)
DoSetItemClientData(n, data);
}
//else: it's already NULL by default
InvalidateBestSize();
}
wxString wxChoice::GetString(int n) const