summaryrefslogtreecommitdiffstats
path: root/pokemod/Sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Sound.cpp')
-rw-r--r--pokemod/Sound.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/pokemod/Sound.cpp b/pokemod/Sound.cpp
index e707bd6b..b4239027 100644
--- a/pokemod/Sound.cpp
+++ b/pokemod/Sound.cpp
@@ -72,11 +72,13 @@ QDomElement Sound::save() const
void Sound::setName(const QString& name)
{
m_name = name;
+ emit(changed());
}
void Sound::setData(const QByteArray& data)
{
m_data = data;
+ emit(changed());
}
QString Sound::name() const