]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/checklst.cpp
wxCaret MSW bug fixes
[wxWidgets.git] / src / msw / checklst.cpp
index a5d0845627958b786ba6814edf705f9a60c55c40..5e46c81073e8c6193cf149e416fdfca4a1eff0c4 100644 (file)
@@ -319,8 +319,8 @@ void wxCheckListBox::InsertItems(int nItems, const wxString items[], int pos)
 wxOwnerDrawn *wxCheckListBox::CreateItem(size_t nIndex)
 {
   wxCheckListBoxItem *pItem = new wxCheckListBoxItem(this, nIndex);
-  if ( m_windowFont.Ok() )
-    pItem->SetFont(m_windowFont);
+  if ( m_font.Ok() )
+    pItem->SetFont(m_font);
 
   return pItem;
 }
@@ -365,7 +365,7 @@ void wxCheckListBox::OnChar(wxKeyEvent& event)
   if ( event.KeyCode() == WXK_SPACE )
     GetItem(GetSelection())->Toggle();
   else
-    wxListBox::OnChar(event);
+    event.Skip();
 }
 
 void wxCheckListBox::OnLeftClick(wxMouseEvent& event)