Enabled sorting for the Lobby Dialog

Added a placeholder text for the Search Forum filter

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5725 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2012-10-26 11:55:28 +00:00
parent cc9e933362
commit 06926a64c0
2 changed files with 137 additions and 130 deletions

View File

@ -109,6 +109,9 @@
<property name="itemsExpandable"> <property name="itemsExpandable">
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<property name="allColumnsShowFocus"> <property name="allColumnsShowFocus">
<bool>true</bool> <bool>true</bool>
</property> </property>

View File

@ -216,6 +216,10 @@ ForumsDialog::ForumsDialog(QWidget *parent)
ui.threadTreeWidget->installEventFilter(this); ui.threadTreeWidget->installEventFilter(this);
#if QT_VERSION >= 0x040700
ui.filterLineEdit->setPlaceholderText(tr("Search this forum...")) ;
#endif
/* Hide platform specific features */ /* Hide platform specific features */
#ifdef Q_WS_WIN #ifdef Q_WS_WIN