diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-21 02:55:14 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-21 02:55:14 (GMT) |
commit | 255190589527a6dbe4a6ef26f39abb126d348649 (patch) | |
tree | 4ba2111059e016789dbb7f77d28983dfcb8fe61f /src | |
parent | 821c064f3e6d624152b49f2297b750bdc53f3a5f (diff) |
fix OpenCSG Warning bug where slots were not connected
Diffstat (limited to 'src')
-rw-r--r-- | src/OpenCSGWarningDialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OpenCSGWarningDialog.cc b/src/OpenCSGWarningDialog.cc index 5648576..926a55b 100644 --- a/src/OpenCSGWarningDialog.cc +++ b/src/OpenCSGWarningDialog.cc @@ -8,12 +8,12 @@ OpenCSGWarningDialog::OpenCSGWarningDialog(QWidget*) connect(this->showBox, SIGNAL(toggled(bool)), Preferences::inst()->openCSGWarningBox, SLOT(setChecked(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)), Preferences::inst()->enableOpenCSGBox, SLOT(setChecked(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) |