Add missing DeleteAllColumns

This commit is contained in:
Robin Dunn
2017-08-29 18:29:27 -07:00
parent 09f48f5d21
commit 1be80aca7c
2 changed files with 6 additions and 1 deletions

View File

@@ -194,6 +194,11 @@ class listctrl_Tests(wtc.WidgetTestCase):
lc.SetItemData(0, wx._core._LONG_MAX + 100)
def test_listctrlDeleteAllColumns(self):
lc = self._makeListCtrl()
lc.DeleteAllColumns()
#---------------------------------------------------------------------------