From 60a2ed8ee8aa994c83d382af2ec477e171beb950 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 9 Jun 2008 00:50:59 +0000 Subject: [FIX] All modules now use their own namespace git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@201 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemodr/MapWildListUI.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'pokemodr/MapWildListUI.cpp') diff --git a/pokemodr/MapWildListUI.cpp b/pokemodr/MapWildListUI.cpp index 462a1716..fd1b6e4d 100644 --- a/pokemodr/MapWildListUI.cpp +++ b/pokemodr/MapWildListUI.cpp @@ -21,36 +21,36 @@ // Pokemod includes #include "../pokemod/MapWildList.h" -MapWildListUI::MapWildListUI(MapWildList* wildList, QWidget* parent) : +Pokemodr::MapWildListUI::MapWildListUI(Pokemod::MapWildList* wildList, QWidget* parent) : ObjectUI(parent) { setupUi(this); - setObjects(wildList, new MapWildList(*wildList)); + setObjects(wildList, new Pokemod::MapWildList(*wildList)); } -MapWildListUI::~MapWildListUI() +Pokemodr::MapWildListUI::~MapWildListUI() { } -void MapWildListUI::setGui() +void Pokemodr::MapWildListUI::setGui() { - varName->setText(static_cast(modified())->name()); + varName->setText(static_cast(modified())->name()); } -void MapWildListUI::apply() +void Pokemodr::MapWildListUI::apply() { - *static_cast(original()) = *static_cast(modified()); + *static_cast(original()) = *static_cast(modified()); emit(changed(false)); } -void MapWildListUI::discard() +void Pokemodr::MapWildListUI::discard() { - *static_cast(modified()) = *static_cast(original()); + *static_cast(modified()) = *static_cast(original()); setGui(); emit(changed(false)); } -void MapWildListUI::on_varName_textChanged(const QString& name) +void Pokemodr::MapWildListUI::on_varName_textChanged(const QString& name) { - static_cast(modified())->setName(name); + static_cast(modified())->setName(name); } -- cgit