diff options
Diffstat (limited to 'pokemod/Map.cpp')
| -rw-r--r-- | pokemod/Map.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pokemod/Map.cpp b/pokemod/Map.cpp index 7a3899f1..92cdb98e 100644 --- a/pokemod/Map.cpp +++ b/pokemod/Map.cpp @@ -153,6 +153,7 @@ QDomElement Map::save() const void Map::setName(const QString& name) { m_name = name; + emit(changed()); } void Map::setFlyWarp(const int warp) @@ -163,6 +164,7 @@ void Map::setFlyWarp(const int warp) return; } m_flyWarp = warp; + emit(changed()); } void Map::setType(const int type) @@ -173,6 +175,7 @@ void Map::setType(const int type) return; } m_type = type; + emit(changed()); } QString Map::name() const |
