Fixed return code of GetSelectionCount()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1998-11-22 19:48:02 +00:00
parent e0e9b65eaa
commit c2cde53a09

View File

@@ -1815,7 +1815,7 @@ int wxListMainWindow::GetSelectedItemCount( void )
if (line->IsHilighted()) ret++; if (line->IsHilighted()) ret++;
node = node->Next(); node = node->Next();
} }
return 0; return ret;
} }
void wxListMainWindow::SetMode( long mode ) void wxListMainWindow::SetMode( long mode )