diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-11-01 00:09:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-11-01 00:09:32 +0300 |
commit | 029818ba44703c5151f8d916284e307b05d08fa9 (patch) | |
tree | 785726402146454e69acf1b18ad12f6890e29932 /src/net/ea | |
parent | 1936a2bcfad1b37385aec3d84efabf2570a8c9e8 (diff) | |
download | plus-029818ba44703c5151f8d916284e307b05d08fa9.tar.gz plus-029818ba44703c5151f8d916284e307b05d08fa9.tar.bz2 plus-029818ba44703c5151f8d916284e307b05d08fa9.tar.xz plus-029818ba44703c5151f8d916284e307b05d08fa9.zip |
Add configure option --enable-checks for check some calls (disabled by default)
Also add configuration listeners removing in objects.
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/gui/guildtab.cpp | 1 | ||||
-rw-r--r-- | src/net/ea/gui/partytab.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/net/ea/gui/guildtab.cpp b/src/net/ea/gui/guildtab.cpp index 86f0e65a6..e0a8937d1 100644 --- a/src/net/ea/gui/guildtab.cpp +++ b/src/net/ea/gui/guildtab.cpp @@ -57,6 +57,7 @@ GuildTab::GuildTab(const Widget2 *const widget) : GuildTab::~GuildTab() { config.removeListeners(this); + CHECKLISTENERS } bool GuildTab::handleCommand(const std::string &type, const std::string &args) diff --git a/src/net/ea/gui/partytab.cpp b/src/net/ea/gui/partytab.cpp index 2b93793d3..f3c1d0377 100644 --- a/src/net/ea/gui/partytab.cpp +++ b/src/net/ea/gui/partytab.cpp @@ -58,6 +58,8 @@ PartyTab::PartyTab(const Widget2 *const widget) : PartyTab::~PartyTab() { + config.removeListeners(this); + CHECKLISTENERS } void PartyTab::handleInput(const std::string &msg) |