]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/combobox.h
Replace wxComboBox::IsEmpty() with Is{List,Text}Empty().
[wxWidgets.git] / include / wx / gtk / combobox.h
index fb718013c5f136c1cf5bc4807ef176aba63ad17c..02ae7e481a996a1c9e3a39f38c09516604d908af 100644 (file)
@@ -97,7 +97,9 @@ public:
         wxItemContainer::Clear();
     }
 
-    bool IsEmpty() const { return wxItemContainer::IsEmpty(); }
+    // See wxComboBoxBase discussion of IsEmpty().
+    bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
+    bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
 
     void OnChar( wxKeyEvent &event );