From f88c85b09b0e4557c2ce9216941244cce0750169 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 10 Aug 2020 17:26:06 +0100 Subject: don't need to enforce sort in the baseclass MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib8f208952bdda686c9ec9881f4da66e8c1c3a83e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100495 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- dbaccess/source/ui/control/dbtreelistbox.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx index 8be8061628cc..1b7afcc7198d 100644 --- a/dbaccess/source/ui/control/dbtreelistbox.cxx +++ b/dbaccess/source/ui/control/dbtreelistbox.cxx @@ -117,8 +117,6 @@ TreeListBox::TreeListBox(std::unique_ptr xTreeView) , m_pActionListener(nullptr) , m_pContextMenuProvider(nullptr) { - m_xTreeView->make_sorted(); - m_xTreeView->connect_key_press(LINK(this, TreeListBox, KeyInputHdl)); m_xTreeView->connect_changed(LINK(this, TreeListBox, SelectHdl)); m_xTreeView->connect_query_tooltip(LINK(this, TreeListBox, QueryTooltipHdl)); -- cgit