summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-10-08 18:31:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-10-08 18:31:12 +0900
commit123dd355b1a2f3aa7a6db0321ff2543fdc65f59f (patch)
tree46b50a4abd84491517f94edceecb01c720574c2e
parentb98d05cb4db601d354d72915a57a09affb2ab29a (diff)
downloadtdevelop-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.
-rw-r--r--parts/documentation/contentsview.cpp4
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 )));