]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listctrl.cpp
Yet another one.
[wxWidgets.git] / src / generic / listctrl.cpp
index ed1c2e255b19ee191a45e3fabaf1127506e48818..5b7d3480f4fe4cf41ffb879481f8fc3d4a00bcc6 100644 (file)
@@ -2033,7 +2033,7 @@ long wxListMainWindow::GetNextItem( long item, int WXUNUSED(geometry), int state
 {
     long ret = 0;
     if (item > 0) ret = item;
-    if(item >= GetItemCount()) return -1;
+    if(ret >= GetItemCount()) return -1;
     wxNode *node = m_lines.Nth( ret );
     while (node)
     {
@@ -2063,7 +2063,7 @@ void wxListMainWindow::DeleteItem( long index )
 void wxListMainWindow::DeleteColumn( int col )
 {
     wxCHECK_RET( col < (int)m_columns.GetCount(),
-               "attempting to delete inexistent column in wxListView" );
+               _T("attempting to delete inexistent column in wxListView") );
 
     m_dirty = TRUE;
     wxNode *node = m_columns.Nth( col );