1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #2105 from PKEv:fix_#2089_Copy_QR_code_image

fix #2089 (copy QR image)
This commit is contained in:
Zetok Zalbavar 2015-08-23 18:41:07 +01:00
commit aa311fb065
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -105,7 +105,7 @@ ProfileForm::ProfileForm(QWidget *parent) :
connect(bodyUI->deletePassButton, &QPushButton::clicked, this, &ProfileForm::onDeletePassClicked);
connect(bodyUI->changePassButton, &QPushButton::clicked, this, &ProfileForm::onChangePassClicked);
connect(bodyUI->saveQr, &QPushButton::clicked, this, &ProfileForm::onSaveQrClicked);
connect(bodyUI->copyQr, &QPushButton::clicked, this, &ProfileForm::copyIdClicked);
connect(bodyUI->copyQr, &QPushButton::clicked, this, &ProfileForm::onCopyQrClicked);
connect(core, &Core::usernameSet, this, [=](const QString& val) { bodyUI->userName->setText(val); });
connect(core, &Core::statusMessageSet, this, [=](const QString& val) { bodyUI->statusMessage->setText(val); });