From fdd0eec1d145fb8ac97b4cc9aaed5218214416ec Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 15 May 2008 19:55:43 +0000 Subject: [FIX] Refactored out connections made within widgets [FIX] Flag, Fractiona, and Point widgets fixed to only emit signals when actually changed [FIX] Pokemod classes now emit signals git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@138 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/Author.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pokemod/Author.cpp') 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 -- cgit