diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-01-29 09:10:01 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-01-29 09:10:01 (GMT) |
commit | 712c698cbc5cdb5e939629cf4b18b7944274abbd (patch) | |
tree | bc87ecb72a95786766b29225dd25d7aabe147afd /Swift | |
parent | 14efae9ac27757b226a047ac2fbded2c5c85be3c (diff) | |
download | swift-contrib-712c698cbc5cdb5e939629cf4b18b7944274abbd.zip swift-contrib-712c698cbc5cdb5e939629cf4b18b7944274abbd.tar.bz2 |
Include JID in contact regroup dialog.
Resolves: #607
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtSetGroupsDialog.cpp | 2 |
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); |