summaryrefslogtreecommitdiffstats
path: root/pokemod/Object.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-05-07 02:08:51 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-05-07 02:08:51 +0000
commit39a1b43adbebb73b87c4a2346b9ccb2c2a34753b (patch)
tree08d55409c9d5b2149c4e8b341203dcbb42fa0a2c /pokemod/Object.h
parent8714e1d409f46b05980b3e1e9f3a10910294b429 (diff)
downloadsigen-39a1b43adbebb73b87c4a2346b9ccb2c2a34753b.tar.gz
sigen-39a1b43adbebb73b87c4a2346b9ccb2c2a34753b.tar.xz
sigen-39a1b43adbebb73b87c4a2346b9ccb2c2a34753b.zip
[FIX] Added Q_OBJECT to pokemod classes
[FIX] UI classes fixed to work with new API [FIX] Qmake files fixed git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@121 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Object.h')
-rw-r--r--pokemod/Object.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pokemod/Object.h b/pokemod/Object.h
index 8048b5b0..ec16e5e9 100644
--- a/pokemod/Object.h
+++ b/pokemod/Object.h
@@ -44,7 +44,9 @@ class Object : public QObject
QString className() const;
signals:
void warning(const QString& message) const;
- void error(const QString& message) const;
+ void error(const QString& message);
+
+ void changed();
public slots:
virtual void validate() = 0;