summaryrefslogtreecommitdiffstats
path: root/pokemod/Author.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Author.cpp')
-rw-r--r--pokemod/Author.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/pokemod/Author.cpp b/pokemod/Author.cpp
index b15da387..f3424978 100644
--- a/pokemod/Author.cpp
+++ b/pokemod/Author.cpp
@@ -82,16 +82,19 @@ QDomElement Author::save() const
void Author::setName(const QString& name)
{
m_name = name;
+ emit(changed());
}
void Author::setEmail(const QString& email)
{
m_email = email;
+ emit(changed());
}
void Author::setRole(const QString& role)
{
m_role = role;
+ emit(changed());
}
QString Author::name() const