diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-05-21 17:22:27 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-05-21 17:22:27 +0000 |
| commit | fa85318e91ea9bbe4638092767b3b8e0ea64f57c (patch) | |
| tree | eb0bcb69ab624721d59ec9905d392937810cb7b6 /pokemodr/TrainerUI.cpp | |
| parent | 404b30c8601d3a3cb25bb6972427d93b1ebed640 (diff) | |
| download | sigen-fa85318e91ea9bbe4638092767b3b8e0ea64f57c.tar.gz sigen-fa85318e91ea9bbe4638092767b3b8e0ea64f57c.tar.xz sigen-fa85318e91ea9bbe4638092767b3b8e0ea64f57c.zip | |
[FIX] Classes in pokemod will no longer emit a changed signal if not actually changed
[FIX] Logic error with checking to see if certain GUI elements need resetting
[FIX] Using activated rather than currentIndexChanged signals for combo boxes
[FIX] Qt bugs now irrelevant
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@161 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/TrainerUI.cpp')
| -rw-r--r-- | pokemodr/TrainerUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemodr/TrainerUI.cpp b/pokemodr/TrainerUI.cpp index c281b8a9..ded81761 100644 --- a/pokemodr/TrainerUI.cpp +++ b/pokemodr/TrainerUI.cpp @@ -60,7 +60,7 @@ void TrainerUI::on_varName_textChanged(const QString & name) static_cast<Trainer*>(modified())->setName(name); } -void TrainerUI::on_varMoneyFactor_valueChaged(const int moneyFactor) +void TrainerUI::on_varMoneyFactor_valueChanged(const int moneyFactor) { static_cast<Trainer*>(modified())->setMoneyFactor(moneyFactor); } |
