Replace wxComboBox::IsEmpty() with Is{List,Text}Empty().

IsEmpty() didn't exist in all ports (notably not wxMSW) and its meaning was
unclear anyhow, so remove it even from the ports where it did exist and add
clear Is{List,Text}Empty() replacements instead.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-08-21 12:06:16 +00:00
parent 9489ebf0f1
commit 36a96421b3
11 changed files with 109 additions and 5 deletions

View File

@@ -333,6 +333,9 @@ Changes in behaviour which may result in compilation errors
- wxST_MARKUP doesn't exist any more, use wxControl::SetLabelMarkup() instead.
- wxComboBox::IsEmpty(), which was previously available in some ports (but not
wxMSW), doesn't exist any more, use either IsListEmpty() or IsTextEmpty().
Deprecated methods and their replacements
-----------------------------------------
@@ -453,6 +456,7 @@ All (GUI):
- Allow marking wxTreeBook nodes to expand initially in XRC (RedTide).
- Added customizable wxDocManager::OnMRUFileNotExist() virtual method.
- Fix stock labels when not using mnemonics for Chinese (cw.ahbong).
- Added wxComboBox::IsListEmpty() and IsTextEmpty().
OSX: