+
+void CheckListBoxFrame::AdjustColour(size_t index)
+{
+ // not implemented in other ports yet
+#ifdef __WXMSW__
+ // even items have grey backround, odd ones - white
+ unsigned char c = index % 2 ? 255 : 200;
+ m_pListBox->GetItem(index)->SetBackgroundColour(wxColor(c, c, c));
+#endif // wxMSW
+}