mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
-fixed statusPeers output string to the correct place to out2
-redesigned the outputs for statusbar git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@603 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
34f6bd812a
commit
d5c21b5b4a
@ -258,9 +258,10 @@ MainWindow::MainWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//statusBar()->addWidget(new QLabel(tr("Users: 0 Files: 0 ")));
|
statusBar()->addWidget(statusPeers = new QLabel(tr("Online: 0 |Friends: 0|Network: 0")));
|
||||||
statusBar()->addPermanentWidget(statusRates = new QLabel(tr("Down: 0.0 Up: 0.0 ")));
|
//statusPeers->setPixmap(QPixmap::QPixmap(":/images/.png"));
|
||||||
statusBar()->addPermanentWidget(statusPeers = new QLabel(tr("Connections: 0/0/0 ")));
|
statusBar()->addPermanentWidget(statusRates = new QLabel(tr("Down: 0.0 | Up: 0.0 ")));
|
||||||
|
//statusBar()->addPermanentWidget(statusPeers = new QLabel(tr("Online: 0 |Friends: 0|Network: 0")));
|
||||||
|
|
||||||
|
|
||||||
//servicegrp->actions()[0]->setChecked(true);
|
//servicegrp->actions()[0]->setChecked(true);
|
||||||
@ -339,7 +340,7 @@ void MainWindow::updateStatus()
|
|||||||
int others = 1 + ids.size();
|
int others = 1 + ids.size();
|
||||||
|
|
||||||
std::ostringstream out2;
|
std::ostringstream out2;
|
||||||
out << "Online/Friends/Network: " << online << "/" << friends << "/" << others << " ";
|
out2 << "Online: " << online << "| Friends: " << friends << "| Network: " << others << " ";
|
||||||
|
|
||||||
/* set uploads/download rates */
|
/* set uploads/download rates */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user