mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-09 06:42:19 -04:00
update script and added a spacer when counting Messages
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2448 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
17607626c0
commit
1fd4bfd342
2 changed files with 9 additions and 9 deletions
|
@ -1246,7 +1246,7 @@ void MessagesDialog::updateMessageSummaryList()
|
|||
{
|
||||
//QList<QListWidgetItem *> QListWidget::findItems ( const QString & text, Qt::MatchFlags flags ) const
|
||||
QListWidgetItem* item = ui.listWidget->item(0);
|
||||
textItem = tr("Inbox") + "(" + QString::number(newInboxCount)+")";
|
||||
textItem = tr("Inbox") + " " + "(" + QString::number(newInboxCount)+")";
|
||||
item->setText(textItem);
|
||||
QFont qf = item->font();
|
||||
qf.setBold(true);
|
||||
|
@ -1270,7 +1270,7 @@ void MessagesDialog::updateMessageSummaryList()
|
|||
//QList<QListWidgetItem *> QListWidget::findItems ( const QString & text, Qt::MatchFlags flags ) const
|
||||
QListWidgetItem* item = ui.listWidget->item(1);
|
||||
|
||||
textItem = tr("Outbox") + "(" + QString::number(newOutboxCount)+")";
|
||||
textItem = tr("Outbox") + " " + "(" + QString::number(newOutboxCount)+")";
|
||||
item->setText(textItem);
|
||||
QFont qf = item->font();
|
||||
qf.setBold(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue