summaryrefslogtreecommitdiffstats
path: root/pokemodr/WeatherUI.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-06-09 00:50:59 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-06-09 00:50:59 +0000
commit60a2ed8ee8aa994c83d382af2ec477e171beb950 (patch)
tree6fea6867adee00f22b9d775a6dce15ed875d75e6 /pokemodr/WeatherUI.h
parent0737b455ca94351c574aa1a8c83ea30c5b7bc443 (diff)
downloadsigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.gz
sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.tar.xz
sigen-60a2ed8ee8aa994c83d382af2ec477e171beb950.zip
[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
Diffstat (limited to 'pokemodr/WeatherUI.h')
-rw-r--r--pokemodr/WeatherUI.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/pokemodr/WeatherUI.h b/pokemodr/WeatherUI.h
index 49ea17dd..f76d19de 100644
--- a/pokemodr/WeatherUI.h
+++ b/pokemodr/WeatherUI.h
@@ -18,30 +18,36 @@
#ifndef __POKEMODR_WEATHERUI__
#define __POKEMODR_WEATHERUI__
-// PokeModr includes
+// Pokemodr includes
#include "ObjectUI.h"
// Form include
#include "ui_weather.h"
// Forward declarations
+namespace Pokemod
+{
class Weather;
+}
+namespace Pokemodr
+{
class WeatherUI : public ObjectUI, private Ui::formWeather
{
Q_OBJECT
public:
- WeatherUI(Weather* weather, QWidget* parent);
+ WeatherUI(Pokemod::Weather* weather, QWidget* parent);
~WeatherUI();
public slots:
void apply();
void discard();
protected slots:
void on_varName_textChanged(const QString& name);
- void on_varScript_valueChanged(const Script& script);
+ void on_varScript_valueChanged(const Pokemod::Script& script);
private slots:
void setGui();
};
+}
#endif