diff options
Diffstat (limited to 'pokemodr/CoinListObjectUI.cpp')
| -rw-r--r-- | pokemodr/CoinListObjectUI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pokemodr/CoinListObjectUI.cpp b/pokemodr/CoinListObjectUI.cpp index af166d9d..283a55c9 100644 --- a/pokemodr/CoinListObjectUI.cpp +++ b/pokemodr/CoinListObjectUI.cpp @@ -33,10 +33,10 @@ CoinListObjectUI::CoinListObjectUI(CoinListObject* object, QWidget* parent) : QMetaObject::connectSlotsByName(this); setObjects(object, new CoinListObject(*object)); connect(this, SIGNAL(changed(bool)), boxButtons, SLOT(setEnabled(bool))); - connect(modified(), SIGNAL(error()), this, SLOT(setGui())); + connect(modified(), SIGNAL(error(const QString&)), this, SLOT(setGui())); connect(modified(), SIGNAL(error(QString&)), this, SLOT(errorMessage(QString&))); connect(modified(), SIGNAL(warning(QString&)), this, SLOT(warningMessage(QString&))); - connect(modified(), SIGNAL(changed()), this, SIGNAL(changed(true))); + connect(modified(), SIGNAL(changed()), this, SLOT(setChanged())); init(); } |
