]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/checklst.cpp
using Theme layout for measuring as well
[wxWidgets.git] / src / os2 / checklst.cpp
index cb94c109e256fab7032e4f8f5f73c1d0aa620863..05f0b829f2c42b8725e93723407e5a3e70ad2f8b 100644 (file)
@@ -269,7 +269,7 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
 
 void wxCheckListBox::Delete(int N)
 {
-    wxCHECK_RET( N >= 0 && N < m_noItems,
+    wxCHECK_RET( N >= 0 && N < m_nNumItems,
                  wxT("invalid index in wxListBox::Delete") );
 
     wxListBox::Delete(N);
@@ -277,12 +277,12 @@ void wxCheckListBox::Delete(int N)
     // free memory
     delete m_aItems[N];
 
-    m_aItems.Remove(N);
+    m_aItems.RemoveAt(N);
 }
 
 void wxCheckListBox::InsertItems(int nItems, const wxString items[], int pos)
 {
-    wxCHECK_RET( pos >= 0 && pos <= m_noItems,
+    wxCHECK_RET( pos >= 0 && pos <= m_nNumItems,
                  wxT("invalid index in wxCheckListBox::InsertItems") );
 
     wxListBox::InsertItems(nItems, items, pos);
@@ -377,7 +377,7 @@ void wxCheckListBox::OnLeftClick(wxMouseEvent& event)
 */
     size_t nItem = 0;
 
-    if ( nItem < (size_t)m_noItems )
+    if ( nItem < (size_t)m_nNumItems )
       GetItem(nItem)->Toggle();
     //else: it's not an error, just click outside of client zone
   }