From 99ab4eb8e64bdc7abe0a8751ada04342f21884f2 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 27 Feb 2017 09:28:05 +0100 Subject: logic/shortcuts: free all heap memory in dtor --- logic/shortcuts.cpp | 5 +++++ logic/shortcuts.h | 1 + 2 files changed, 6 insertions(+) (limited to 'logic') diff --git a/logic/shortcuts.cpp b/logic/shortcuts.cpp index 27d47c8b..6d77c3e0 100644 --- a/logic/shortcuts.cpp +++ b/logic/shortcuts.cpp @@ -106,6 +106,11 @@ void Shortcuts::receiver(const Key& k) } #endif +Shortcuts::~Shortcuts() +{ + reload({}); +} + void Shortcuts::reload(const t_keys& keys_) { const unsigned sz = keys_.size(); diff --git a/logic/shortcuts.h b/logic/shortcuts.h index 4ddc5b34..5a96e983 100644 --- a/logic/shortcuts.h +++ b/logic/shortcuts.h @@ -54,6 +54,7 @@ public: : key_token([&](const Key& k) { receiver(k); }) #endif {} + ~Shortcuts(); void reload(const t_keys& keys_); private: -- cgit v1.2.3