]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/checklst.cpp
Committing in .
[wxWidgets.git] / src / gtk1 / checklst.cpp
index de5d9618595cb22fc6c2b4ab90b0bb3e98b06875..8d1d92f1f33e9614f1a2f42a4236f3a47731075c 100644 (file)
@@ -54,7 +54,7 @@ bool wxCheckListBox::IsChecked( int index ) const
 
         wxString str = wxString(label->label,*wxConvCurrent);
 
-        return (str[1] == wxT('X'));
+        return (str.GetChar(1) == wxT('X'));
     }
 
     wxFAIL_MSG(wxT("wrong checklistbox index"));
@@ -73,7 +73,7 @@ void wxCheckListBox::Check( int index, bool check )
 
         wxString str = wxString(label->label,*wxConvCurrent);
 
-        if (check == (str[1] == wxT('X'))) return;
+        if (check == (str.GetChar(1) == wxT('X'))) return;
 
         if (check)
             str.SetChar( 1, wxT('X') );