bugfix: Wrong slot names for OpenCSG warning dialog

felipesanches-svg
Marius Kintel 2013-01-13 18:28:13 -05:00
parent a1da6b2ade
commit db8d891943
1 changed files with 2 additions and 2 deletions

View File

@ -8,12 +8,12 @@ OpenCSGWarningDialog::OpenCSGWarningDialog(QWidget*)
connect(this->showBox, SIGNAL(toggled(bool)), connect(this->showBox, SIGNAL(toggled(bool)),
Preferences::inst()->openCSGWarningBox, SLOT(setChecked(bool))); Preferences::inst()->openCSGWarningBox, SLOT(setChecked(bool)));
connect(this->showBox, SIGNAL(toggled(bool)), connect(this->showBox, SIGNAL(toggled(bool)),
Preferences::inst(), SLOT(openCSGWarningChanged(bool))); Preferences::inst(), SLOT(on_openCSGWarningBox_toggled(bool)));
connect(this->enableOpenCSGBox, SIGNAL(toggled(bool)), connect(this->enableOpenCSGBox, SIGNAL(toggled(bool)),
Preferences::inst()->enableOpenCSGBox, SLOT(setChecked(bool))); Preferences::inst()->enableOpenCSGBox, SLOT(setChecked(bool)));
connect(this->enableOpenCSGBox, SIGNAL(toggled(bool)), connect(this->enableOpenCSGBox, SIGNAL(toggled(bool)),
Preferences::inst(), SLOT(enableOpenCSGChanged(bool))); Preferences::inst(), SLOT(on_enableOpenCSGBox_toggled(bool)));
} }
void OpenCSGWarningDialog::setText(const QString &text) void OpenCSGWarningDialog::setText(const QString &text)