From 0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 6 Sep 2008 04:12:30 +0000 Subject: [FIX] Renamed everything (in use) away from Poké- prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigmodr/MapWildListUI.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'sigmodr/MapWildListUI.cpp') diff --git a/sigmodr/MapWildListUI.cpp b/sigmodr/MapWildListUI.cpp index 28f46ce5..17839ca7 100644 --- a/sigmodr/MapWildListUI.cpp +++ b/sigmodr/MapWildListUI.cpp @@ -18,39 +18,39 @@ // Header include #include "MapWildListUI.h" -// Pokemod includes -#include "../pokemod/MapWildList.h" +// Sigmod includes +#include "../sigmod/MapWildList.h" -Pokemodr::MapWildListUI::MapWildListUI(Pokemod::MapWildList* wildList, QWidget* parent) : +Sigmodr::MapWildListUI::MapWildListUI(Sigmod::MapWildList* wildList, QWidget* parent) : ObjectUI(parent) { setupUi(this); - setObjects(wildList, new Pokemod::MapWildList(*wildList)); + setObjects(wildList, new Sigmod::MapWildList(*wildList)); } -Pokemodr::MapWildListUI::~MapWildListUI() +Sigmodr::MapWildListUI::~MapWildListUI() { } -void Pokemodr::MapWildListUI::setGui() +void Sigmodr::MapWildListUI::setGui() { - varName->setText(qobject_cast(modified())->name()); + varName->setText(qobject_cast(modified())->name()); } -void Pokemodr::MapWildListUI::apply() +void Sigmodr::MapWildListUI::apply() { - *qobject_cast(original()) = *qobject_cast(modified()); + *qobject_cast(original()) = *qobject_cast(modified()); emit(changed(false)); } -void Pokemodr::MapWildListUI::discard() +void Sigmodr::MapWildListUI::discard() { - *qobject_cast(modified()) = *qobject_cast(original()); + *qobject_cast(modified()) = *qobject_cast(original()); setGui(); emit(changed(false)); } -void Pokemodr::MapWildListUI::on_varName_textChanged(const QString& name) +void Sigmodr::MapWildListUI::on_varName_textChanged(const QString& name) { - qobject_cast(modified())->setName(name); + qobject_cast(modified())->setName(name); } -- cgit