From aa0bec41b410907ac7250daaa5d4b0e8dcd00539 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 21 Sep 2008 08:17:29 +0000 Subject: [PATCH] - bug fix for preferences saving (introduced recently) --- src/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI.cpp b/src/GUI.cpp index 6ee343b00..794f8fc8e 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -1509,7 +1509,7 @@ void GUI::createTrayIcon() { // Display Program Options void GUI::on_actionOptions_triggered() { options = new options_imp(this); - connect(options, SIGNAL(status_changed(QString, bool)), this, SLOT(OptionsSaved(QString, bool))); + connect(options, SIGNAL(status_changed(bool)), this, SLOT(OptionsSaved(bool))); options->show(); }