diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-05-02 14:48:45 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-05-02 14:48:45 (GMT) |
commit | 43cd98f8e44e70cf1a2133a0202e933f41018cbf (patch) | |
tree | 67cbc027b041389d82fc6c95c312ee982016691e /Swift | |
parent | cc721d1878fda8b4ba294fb4272e2e6a324c9976 (diff) | |
download | swift-43cd98f8e44e70cf1a2133a0202e933f41018cbf.zip swift-43cd98f8e44e70cf1a2133a0202e933f41018cbf.tar.bz2 |
Connect the signals back up in join MUC and add contact dialogs.
Resolves: #334
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/QtAddContactDialog.cpp | 4 | ||||
-rw-r--r-- | Swift/QtUI/QtJoinMUCDialog.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Swift/QtUI/QtAddContactDialog.cpp b/Swift/QtUI/QtAddContactDialog.cpp index 6cd26ad..a5f5a10 100644 --- a/Swift/QtUI/QtAddContactDialog.cpp +++ b/Swift/QtUI/QtAddContactDialog.cpp @@ -13,8 +13,8 @@ QtAddContactDialog::QtAddContactDialog(QWidget* parent) : QDialog(parent) { setupUi(this); errorLabel_->hide(); setAttribute(Qt::WA_DeleteOnClose, true); -// connect(buttons_, SIGNAL(accepted()), SLOT(accept())); -// connect(buttons_, SIGNAL(rejected()), SLOT(reject())); + connect(buttons_, SIGNAL(accepted()), SLOT(accept())); + connect(buttons_, SIGNAL(rejected()), SLOT(reject())); } void QtAddContactDialog::accept() { diff --git a/Swift/QtUI/QtJoinMUCDialog.cpp b/Swift/QtUI/QtJoinMUCDialog.cpp index 694ce32..d459947 100644 --- a/Swift/QtUI/QtJoinMUCDialog.cpp +++ b/Swift/QtUI/QtJoinMUCDialog.cpp @@ -13,8 +13,8 @@ QtJoinMUCDialog::QtJoinMUCDialog(const QString&, const QString&, QWidget* parent setupUi(this); errorLabel_->hide(); setAttribute(Qt::WA_DeleteOnClose, true); -// connect(buttons_, SIGNAL(accepted()), SLOT(accept())); -// connect(buttons_, SIGNAL(rejected()), SLOT(reject())); + connect(buttons_, SIGNAL(accepted()), SLOT(accept())); + connect(buttons_, SIGNAL(rejected()), SLOT(reject())); } void QtJoinMUCDialog::accept() { |