summaryrefslogtreecommitdiffstats
path: root/sigmodr/MapWildListUI.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigmodr/MapWildListUI.cpp
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmodr/MapWildListUI.cpp')
-rw-r--r--sigmodr/MapWildListUI.cpp26
1 files changed, 13 insertions, 13 deletions
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<Pokemod::MapWildList*>(modified())->name());
+ varName->setText(qobject_cast<Sigmod::MapWildList*>(modified())->name());
}
-void Pokemodr::MapWildListUI::apply()
+void Sigmodr::MapWildListUI::apply()
{
- *qobject_cast<Pokemod::MapWildList*>(original()) = *qobject_cast<Pokemod::MapWildList*>(modified());
+ *qobject_cast<Sigmod::MapWildList*>(original()) = *qobject_cast<Sigmod::MapWildList*>(modified());
emit(changed(false));
}
-void Pokemodr::MapWildListUI::discard()
+void Sigmodr::MapWildListUI::discard()
{
- *qobject_cast<Pokemod::MapWildList*>(modified()) = *qobject_cast<Pokemod::MapWildList*>(original());
+ *qobject_cast<Sigmod::MapWildList*>(modified()) = *qobject_cast<Sigmod::MapWildList*>(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<Pokemod::MapWildList*>(modified())->setName(name);
+ qobject_cast<Sigmod::MapWildList*>(modified())->setName(name);
}