* Fixed sorting in Friends

* disabled auto scroll for Friends Widgett
* added retroshare own logo for Network icon
* Fixed layouts/margins/spacings of the Create Forum Message Dialog

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@847 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2008-11-28 01:14:58 +00:00
parent 74104d71e7
commit e03d808ad3
9 changed files with 58 additions and 33 deletions

View file

@ -610,11 +610,11 @@ void CreateForumMsg::setupViewActions()
QMenu *menu = new QMenu(tr("&View"), this);
menuBar()->addMenu(menu);
QAction *a;
//QAction *a;
a = new QAction(QIcon(""), tr("&Contacts Sidebar"), this);
/*a = new QAction(QIcon(""), tr("&Contacts Sidebar"), this);
connect(a, SIGNAL(triggered()), this, SLOT(toggleContacts()));
menu->addAction(a);
menu->addAction(a);*/
}
@ -623,10 +623,11 @@ void CreateForumMsg::setupInsertActions()
QMenu *menu = new QMenu(tr("&Insert"), this);
menuBar()->addMenu(menu);
QAction *a;
//QAction *a;
a = new QAction(QIcon(""), tr("&Image"), this);
/*a = new QAction(QIcon(""), tr("&Image"), this);
connect(a, SIGNAL(triggered()), this, SLOT(addImage()));
menu->addAction(a);
menu->addAction(a);*/
}
}