summaryrefslogtreecommitdiffstats
path: root/pokemodr/ScriptWidget.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/ScriptWidget.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/ScriptWidget.h')
-rw-r--r--pokemodr/ScriptWidget.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/pokemodr/ScriptWidget.h b/pokemodr/ScriptWidget.h
index f881a32d..3d23d97a 100644
--- a/pokemodr/ScriptWidget.h
+++ b/pokemodr/ScriptWidget.h
@@ -27,23 +27,26 @@
// Form include
#include "ui_script.h"
+namespace Pokemodr
+{
class ScriptWidget : public QWidget, private Ui::formScript
{
Q_OBJECT
public:
- ScriptWidget(QWidget* parent, const Script& value = Script("", ""));
+ ScriptWidget(QWidget* parent, const Pokemod::Script& value = Pokemod::Script("", ""));
- Script value() const;
+ Pokemod::Script value() const;
signals:
- void valueChanged(const Script&);
+ void valueChanged(const Pokemod::Script&);
public slots:
- void setValue(const Script& value);
+ void setValue(const Pokemod::Script& value);
protected slots:
void on_varInterpreter_activated(const QString& interpreter);
void on_varScript_textChanged();
private:
- Script m_value;
+ Pokemod::Script m_value;
};
+}
#endif