summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-01-29 09:10:01 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-01-29 09:10:01 (GMT)
commit712c698cbc5cdb5e939629cf4b18b7944274abbd (patch)
treebc87ecb72a95786766b29225dd25d7aabe147afd
parent14efae9ac27757b226a047ac2fbded2c5c85be3c (diff)
downloadswift-712c698cbc5cdb5e939629cf4b18b7944274abbd.zip
swift-712c698cbc5cdb5e939629cf4b18b7944274abbd.tar.bz2
Include JID in contact regroup dialog.
Resolves: #607
-rw-r--r--Swift/QtUI/QtSetGroupsDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtSetGroupsDialog.cpp b/Swift/QtUI/QtSetGroupsDialog.cpp
index 959e9cd..fa1029e 100644
--- a/Swift/QtUI/QtSetGroupsDialog.cpp
+++ b/Swift/QtUI/QtSetGroupsDialog.cpp
@@ -31,7 +31,7 @@ QtSetGroupsDialog::QtSetGroupsDialog(ContactRosterItem* contact, const QList<QSt
scrollArea->setWidget(scroll);
QBoxLayout* scrollLayout = new QBoxLayout(QBoxLayout::TopToBottom, scroll);
QLabel* label = new QLabel(scroll);
- label->setText("Choose groups for " + P2QSTRING(contact->getDisplayName()));
+ label->setText("Choose groups for " + P2QSTRING(contact->getDisplayName()) + " (" + P2QSTRING(contact->getJID().toString()) + ")");
scrollLayout->addWidget(label);
foreach (QString group, allGroups) {
QCheckBox* check = new QCheckBox(scroll);