From d7bc310363c98994457e7882e7010e276169f00a Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 23 Feb 2008 03:40:24 +0000 Subject: [FIX] Frac bug with type of Over1 [FIX] PokemodUI vtable errors [FIX] Manual .pro file clean up [FIX] Was attempting to emit a slot... git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@72 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemodr/EggGroupUI.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pokemodr/EggGroupUI.cpp') diff --git a/pokemodr/EggGroupUI.cpp b/pokemodr/EggGroupUI.cpp index 56459d83..382f78f9 100644 --- a/pokemodr/EggGroupUI.cpp +++ b/pokemodr/EggGroupUI.cpp @@ -32,7 +32,7 @@ EggGroupUI::EggGroupUI(EggGroup* e, QWidget* parent) : setupUi(this); QMetaObject::connectSlotsByName(this); setObjects(eggGroup, eggGroup_mod); - connect(this, SIGNAL(setChanged(bool)), boxButtons, SLOT(setDisabled(bool))); + connect(this, SIGNAL(changed(bool)), boxButtons, SLOT(setDisabled(bool))); setGui(); } @@ -49,18 +49,18 @@ void EggGroupUI::setGui() void EggGroupUI::on_buttonApply_clicked() { *eggGroup = *eggGroup_mod; - emit(setChanged(false)); + emit(changed(false)); } void EggGroupUI::on_buttonDiscard_clicked() { *eggGroup_mod = *eggGroup; - emit(setChanged(false)); + emit(changed(false)); setGui(); } void EggGroupUI::on_varName_textChanged(const QString& n) { eggGroup_mod->setName(n); - emit(setChanged(true)); + emit(changed(true)); } -- cgit