#if wxUSE_CHECKLISTBOX
-#include "wx/defs.h"
-
#include "wx/checklst.h"
-#include "wx/arrstr.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/arrstr.h"
+#endif
// ============================================================================
// implementation
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;