]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_listbox.i
Oops
[wxWidgets.git] / wxPython / src / _listbox.i
index b6dc1ae915287a59e620d53c3e4ce0d452f1ee22..5b126a5799bf3e5201acc17c1972e584e56cf448 100644 (file)
 %{
 #include <wx/checklst.h>
     
-    DECLARE_DEF_STRING(ListBoxNameStr);
 %}
 
+MAKE_CONST_WXSTRING(ListBoxNameStr);
+
+
 //---------------------------------------------------------------------------
 %newgroup
 
@@ -64,12 +66,12 @@ public:
 
     // multiple selection logic
     virtual bool IsSelected(int n) const;
-    virtual void SetSelection(int n, bool select = TRUE);
+    virtual void SetSelection(int n, bool select = True);
     virtual void Select(int n);
     void Deselect(int n);
     void DeselectAll(int itemToLeaveSelected = -1);
 
-    virtual bool SetStringSelection(const wxString& s, bool select = TRUE);
+    virtual bool SetStringSelection(const wxString& s, bool select = True);
 
     // works for single as well as multiple selection listboxes (unlike
     // GetSelection which only works for listboxes with single selection)
@@ -99,7 +101,7 @@ public:
     // listbox and ensures that it is visible i.e. not scrolled out of view
     void AppendAndEnsureVisible(const wxString& s);
 
-    // return TRUE if this listbox is sorted
+    // return True if this listbox is sorted
     bool IsSorted() const;
 };
 
@@ -133,7 +135,7 @@ public:
                    const wxString& name = wxPyListBoxNameStr);
 
     bool  IsChecked(int index);
-    void  Check(int index, int check = TRUE);
+    void  Check(int index, int check = True);
 
 #ifndef __WXMAC__
     int GetItemHeight();