]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/checklst.cpp
Use type safe list for model notifiers, sample corrected
[wxWidgets.git] / src / motif / checklst.cpp
index 8b8ee7ef6e3b64006dc2b8df269363667952fa88..0205216a2b007529c53d71fbc2d68b24143bc323 100644 (file)
 
 #if wxUSE_CHECKLISTBOX
 
-#include "wx/defs.h"
-
 #include "wx/checklst.h"
-#include "wx/arrstr.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/arrstr.h"
+#endif
 
 // ============================================================================
 // implementation
@@ -133,7 +134,7 @@ void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck)
 
 void wxCheckListBox::DoToggleItem( int n, int x )
 {
-    if( x < 23 )
+    if( x > 0 && x < 23 )
     {
         wxString label = wxListBox::GetString(n);
         label[1u] = (!::IsChecked(label)) ? checkChar : uncheckChar;