profilechooser: run init() in constructor

Change-Id: I4387b52f2d929ffa096bf2d931eb692b6798f45a
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-07-18 16:16:47 +02:00
parent e67ff7d8c8
commit ebe6229980
3 changed files with 5 additions and 15 deletions

View File

@@ -226,8 +226,7 @@ AttachCoreDialog::AttachCoreDialog(QWidget *parent)
d->overrideStartScriptLabel = new QLabel(tr("Override &start script:"), this);
d->overrideStartScriptLabel->setBuddy(d->overrideStartScriptFileName);
d->profileComboBox = new ProfileChooser(this);
d->profileComboBox->init(false);
d->profileComboBox = new ProfileChooser(this, false);
d->profileLabel = new QLabel(tr("&Target:"), this);
d->profileLabel->setBuddy(d->profileComboBox);
@@ -364,8 +363,7 @@ AttachExternalDialog::AttachExternalDialog(QWidget *parent)
d->filterWidget = new Utils::FilterLineEdit(this);
d->filterWidget->setFocus(Qt::TabFocusReason);
d->profileComboBox = new ProfileChooser(this);
d->profileComboBox->init(true);
d->profileComboBox = new ProfileChooser(this, true);
d->profileLabel = new QLabel(tr("&Target:"), this);
d->profileLabel->setBuddy(d->profileComboBox);
@@ -664,8 +662,7 @@ StartExternalDialog::StartExternalDialog(QWidget *parent)
d->runInTerminalLabel = new QLabel(tr("Run in &terminal:"), this);
d->runInTerminalLabel->setBuddy(d->runInTerminalCheckBox);
d->profileChooser = new ProfileChooser(this);
d->profileChooser->init(true);
d->profileChooser = new ProfileChooser(this, true);
d->profileLabel = new QLabel(tr("&Target:"), this);
d->profileLabel->setBuddy(d->profileChooser);
@@ -991,7 +988,6 @@ StartRemoteDialog::StartRemoteDialog(QWidget *parent, bool enableStartScript)
setWindowTitle(tr("Start Debugger"));
d->profileChooser = new ProfileChooser(this);
d->profileChooser->init(false);
d->profileLabel = new QLabel(tr("Target:"), this);
d->profileLabel->setBuddy(d->profileChooser);