]> git.saurik.com Git - wxWidgets.git/commitdiff
Need to reset count when all items are deleted
authorRobin Dunn <robin@alldunn.com>
Wed, 22 Dec 2004 22:02:29 +0000 (22:02 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 22 Dec 2004 22:02:29 +0000 (22:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/listctrl.cpp

index 0d5621a969a2bb22e01cf19d518a4debe8158f77..0eeef36021427b55665e71693ad95b4530640879 100644 (file)
@@ -1264,6 +1264,7 @@ bool wxListCtrl::DeleteItem(long item)
 // Deletes all items
 bool wxListCtrl::DeleteAllItems()
 {
+       m_count = 0;
     return ListView_DeleteAllItems(GetHwnd()) != 0;
 }