mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 11:32:48 -04:00
* fixed layout of News Feed
* changend some icons * fixed config.html git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@695 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
223528e03f
commit
df509a3683
11 changed files with 35 additions and 14 deletions
|
@ -51,6 +51,9 @@
|
|||
|
||||
/* Images for TreeWidget */
|
||||
#define IMAGE_FOLDER ":/images/folder16.png"
|
||||
#define IMAGE_FOLDERGREEN ":/images/folder_green.png"
|
||||
#define IMAGE_FOLDERRED ":/images/folder_red.png"
|
||||
#define IMAGE_FOLDERYELLOW ":/images/folder_yellow.png"
|
||||
#define IMAGE_FORUM ":/images/konversation16.png"
|
||||
#define IMAGE_SUBSCRIBE ":/images/accepted16.png"
|
||||
#define IMAGE_UNSUBSCRIBE ":/images/cancel.png"
|
||||
|
@ -503,19 +506,19 @@ void ForumsDialog::insertForums()
|
|||
|
||||
item = new QTreeWidgetItem((QTreeWidget*)0);
|
||||
item -> setText(0, tr("Subscribed Forums"));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDER)));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDERRED)));
|
||||
item -> addChildren(SubList);
|
||||
TopList.append(item);
|
||||
|
||||
item = new QTreeWidgetItem((QTreeWidget*)0);
|
||||
item -> setText(0, tr("Popular Forums"));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDER)));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDERGREEN)));
|
||||
item -> addChildren(PopList);
|
||||
TopList.append(item);
|
||||
|
||||
item = new QTreeWidgetItem((QTreeWidget*)0);
|
||||
item -> setText(0, tr("Other Forums"));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDER)));
|
||||
item -> setIcon(0,(QIcon(IMAGE_FOLDERYELLOW)));
|
||||
item -> addChildren(OtherList);
|
||||
TopList.append(item);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue