Moved some internal stylesheets to the file Standard.qss.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5474 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-08-26 20:31:10 +00:00
parent f7088f0cc6
commit 5d482b9a6f
30 changed files with 1403 additions and 1691 deletions

View file

@ -88,7 +88,7 @@ FriendsDialog::FriendsDialog(QWidget *parent)
last_status_send_time = 0 ;
inChatCharFormatChanged = false;
connect( ui.mypersonalstatuslabel, SIGNAL(clicked()), SLOT(statusmessage()));
connect( ui.mypersonalstatusLabel, SIGNAL(clicked()), SLOT(statusmessage()));
connect( ui.actionSet_your_Avatar, SIGNAL(triggered()), this, SLOT(getAvatar()));
connect( ui.actionSet_your_Personal_Message, SIGNAL(triggered()), this, SLOT(statusmessage()));
connect( ui.addfileButton, SIGNAL(clicked() ), this , SLOT(addExtraFile()));
@ -212,7 +212,7 @@ FriendsDialog::FriendsDialog(QWidget *parent)
// add self nick and Avatar to Friends.
RsPeerDetails pd ;
if (rsPeers->getPeerDetails(rsPeers->getOwnId(),pd)) {
ui.nicklabel->setText(PeerDefs::nameWithLocation(pd));
ui.nicknameLabel->setText(PeerDefs::nameWithLocation(pd));
}
/* Hide platform specific features */
@ -755,7 +755,7 @@ void FriendsDialog::on_actionCreate_New_Channel_activated()
/** Loads own personal status */
void FriendsDialog::loadmypersonalstatus()
{
ui.mypersonalstatuslabel->setText(QString::fromUtf8(rsMsgs->getCustomStateString().c_str()));
ui.mypersonalstatusLabel->setText(QString::fromUtf8(rsMsgs->getCustomStateString().c_str()));
}
void FriendsDialog::statusmessage()