|
|
|
|
@ -49,10 +49,10 @@ FilterActionMissingCollectionDialog::FilterActionMissingCollectionDialog( |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Folder")); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
mOkButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
mOkButton->setDefault(true); |
|
|
|
|
@ -209,12 +209,12 @@ FilterActionMissingIdentityDialog::FilterActionMissingIdentityDialog(const QStri |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Identity")); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
|
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
okButton->setDefault(true); |
|
|
|
|
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
|
|
|
|
@ -266,12 +266,11 @@ FilterActionMissingTransportDialog::FilterActionMissingTransportDialog(const QSt |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Transport")); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
okButton->setDefault(true); |
|
|
|
|
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
|
|
|
|
@ -323,12 +322,11 @@ FilterActionMissingTemplateDialog::FilterActionMissingTemplateDialog( |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Template")); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
okButton->setDefault(true); |
|
|
|
|
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
|
|
|
|
@ -386,9 +384,8 @@ FilterActionMissingAccountDialog::FilterActionMissingAccountDialog(const QString |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Account")); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
@ -468,12 +465,11 @@ FilterActionMissingTagDialog::FilterActionMissingTagDialog( |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
setWindowTitle(i18n("Select Tag")); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
okButton->setDefault(true); |
|
|
|
|
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
|
|
|
|
@ -556,12 +552,11 @@ FilterActionMissingSoundUrlDialog::FilterActionMissingSoundUrlDialog(const QStri |
|
|
|
|
: QDialog(parent) |
|
|
|
|
{ |
|
|
|
|
setModal(true); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout(this); |
|
|
|
|
QWidget *mainWidget = new QWidget(this); |
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout; |
|
|
|
|
setLayout(mainLayout); |
|
|
|
|
mainLayout->addWidget(mainWidget); |
|
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); |
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, this); |
|
|
|
|
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok); |
|
|
|
|
okButton->setDefault(true); |
|
|
|
|
okButton->setShortcut(Qt::CTRL | Qt::Key_Return); |
|
|
|
|
|