diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-02-26 01:32:59 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-02-26 01:32:59 -0500 |
| commit | 747a721e7f84aa562186efcd4e22b993420dd813 (patch) | |
| tree | defc2a25e4d2c48b9766ffc1895215882eb308f3 | |
| parent | b739807d05c246ff023f50e9f7b058c7590709b6 (diff) | |
| download | sigen-747a721e7f84aa562186efcd4e22b993420dd813.tar.gz sigen-747a721e7f84aa562186efcd4e22b993420dd813.tar.xz sigen-747a721e7f84aa562186efcd4e22b993420dd813.zip | |
Fix signal name in Weather widget
| -rw-r--r-- | sigmodr/widgets/WeatherUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigmodr/widgets/WeatherUI.cpp b/sigmodr/widgets/WeatherUI.cpp index cfc30ce7..8255432d 100644 --- a/sigmodr/widgets/WeatherUI.cpp +++ b/sigmodr/widgets/WeatherUI.cpp @@ -52,7 +52,7 @@ void WeatherUI::initGui() ui_name = formWidget->findChild<KLineEdit*>("varName"); ui_script = formWidget->findChild<ScriptWidget*>("varScript"); connect(ui_name, SIGNAL(textChanged(QString)), this, SLOT(nameChanged(QString))); - connect(ui_script, SIGNAL(scriptChanged(Sigcore::Script)), this, SLOT(scriptChanged(Sigcore::Script))); + connect(ui_script, SIGNAL(valueChanged(Sigcore::Script)), this, SLOT(scriptChanged(Sigcore::Script))); QVBoxLayout* layout = new QVBoxLayout; layout->addWidget(formWidget); setLayout(layout); |
