From 8920e96933e60ab484fa5d2df2a79b8e169fa460 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 4 Jan 2014 21:58:41 +0000 Subject: [PATCH] Reset sorting column index in generic wxDataViewCtrl when clearing columns. Otherwise we could continue to use the now invalid index for sorting. Closes #15803. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75534 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/datavgen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/generic/datavgen.cpp b/src/generic/datavgen.cpp index 28028ecc13..9f1cf8e7c1 100644 --- a/src/generic/datavgen.cpp +++ b/src/generic/datavgen.cpp @@ -5112,6 +5112,7 @@ bool wxDataViewCtrl::ClearColumns() { SetExpanderColumn(NULL); m_cols.Clear(); + m_sortingColumnIdx = wxNOT_FOUND; m_colsBestWidths.clear(); m_clientArea->ClearCurrentColumn();