]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_listbox.i
Fix incorrect #if in OnSysTell
[wxWidgets.git] / wxPython / src / _listbox.i
index c045df428b8804da8fe68271f93ef999371f7b5d..234eaddc2af47b9d0c11617adf0525f52b7d423e 100644 (file)
 %{
 #include <wx/checklst.h>
     
-    DECLARE_DEF_STRING(ListBoxNameStr);
 %}
 
+MAKE_CONST_WXSTRING(ListBoxNameStr);
+
+
 //---------------------------------------------------------------------------
 %newgroup
 
@@ -112,8 +114,8 @@ public:
 class wxCheckListBox : public wxListBox
 {
 public:
-    %addtofunc wxListBox         "self._setOORInfo(self)"
-    %addtofunc wxListBox()       ""
+    %addtofunc wxCheckListBox         "self._setOORInfo(self)"
+    %addtofunc wxCheckListBox()       ""
 
     wxCheckListBox(wxWindow *parent, wxWindowID id,
                    const wxPoint& pos = wxDefaultPosition,
@@ -135,7 +137,7 @@ public:
     bool  IsChecked(int index);
     void  Check(int index, int check = True);
 
-#ifndef __WXMAC__
+#if defined(__WXMSW__) || defined(__WXGTK__)
     int GetItemHeight();
 #endif