Porting++, correct includes and signals

This commit is contained in:
Luca Beltrame 2014-10-04 11:03:40 +02:00
parent 36388e667f
commit 2d5fef28fa

View file

@ -25,7 +25,7 @@
#include <QCryptographicHash>
#include <KWallet/Wallet>
#include <KWallet>
using KWallet::Wallet;
@ -88,8 +88,8 @@ DanbooruConnectWidget::DanbooruConnectWidget(QVector< QUrl > urlList,
connect(anonCheckBox, &QCheckBox::stateChanged, this, &DanbooruConnectWidget::toggleLineEdits);
connect(buttonBox, &KDialogButtonBox::accepted, this, &DanbooruConnectWidget::accept);
connect(closeButton, &KPushButton::clicked, this, &DanbooruConnectWidget::emitRejected);
connect(buttonBox, &QDialogButtonBox::accepted, this, &DanbooruConnectWidget::accept);
connect(closeButton, &QPushButton::clicked, this, &DanbooruConnectWidget::emitRejected);
}