diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-08 18:31:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-10-08 18:31:12 +0900 |
commit | 123dd355b1a2f3aa7a6db0321ff2543fdc65f59f (patch) | |
tree | 46b50a4abd84491517f94edceecb01c720574c2e /parts | |
parent | b98d05cb4db601d354d72915a57a09affb2ab29a (diff) | |
download | tdevelop-123dd355b1a2f3aa7a6db0321ff2543fdc65f59f.tar.gz tdevelop-123dd355b1a2f3aa7a6db0321ff2543fdc65f59f.zip |
Revert "Sort Documentation pane list in alphabetical order. This relates to bug 1859."
because the change also sort subitems, messing up the order of entries in most of the sublists.
Need to find a different way to sort the mail list.
This reverts commit b98d05cb4db601d354d72915a57a09affb2ab29a.
Diffstat (limited to 'parts')
-rw-r--r-- | parts/documentation/contentsview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/documentation/contentsview.cpp b/parts/documentation/contentsview.cpp index 36c1fcbe..532feefd 100644 --- a/parts/documentation/contentsview.cpp +++ b/parts/documentation/contentsview.cpp @@ -44,8 +44,8 @@ ContentsView::ContentsView(DocumentationWidget *parent, const char *name) m_view->header()->hide(); m_view->setResizeMode(TQListView::AllColumns); m_view->setRootIsDecorated(true); - m_view->setSorting(0); - m_view->setAllColumnsShowFocus(true); + m_view->setSorting(-1); + m_view->setAllColumnsShowFocus( true ); connect(m_view, TQT_SIGNAL(executed(TQListViewItem*, const TQPoint&, int )), this, TQT_SLOT(itemExecuted(TQListViewItem*, const TQPoint&, int ))); |