diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-05 21:09:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-05 21:09:49 +0300 |
commit | e39429ce4e219bd577f1adb2c98f04e614b57ceb (patch) | |
tree | 6ca7388440dd43d5a072916b28407fb58d250cbb /src/gui/widgets/shortcutcontainer.cpp | |
parent | bef65b44075a5c918821f1360804ff5f9f2a32ed (diff) | |
download | plus-e39429ce4e219bd577f1adb2c98f04e614b57ceb.tar.gz plus-e39429ce4e219bd577f1adb2c98f04e614b57ceb.tar.bz2 plus-e39429ce4e219bd577f1adb2c98f04e614b57ceb.tar.xz plus-e39429ce4e219bd577f1adb2c98f04e614b57ceb.zip |
Fix termination memory leaks after adding batch draw.
Diffstat (limited to 'src/gui/widgets/shortcutcontainer.cpp')
-rw-r--r-- | src/gui/widgets/shortcutcontainer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/widgets/shortcutcontainer.cpp b/src/gui/widgets/shortcutcontainer.cpp index c421a4bdb..eae6e3ff7 100644 --- a/src/gui/widgets/shortcutcontainer.cpp +++ b/src/gui/widgets/shortcutcontainer.cpp @@ -49,6 +49,12 @@ ShortcutContainer::ShortcutContainer() : { } +ShortcutContainer::~ShortcutContainer() +{ + delete mVertexes; + mVertexes = nullptr; +} + void ShortcutContainer::widgetResized(const gcn::Event &event A_UNUSED) { mGridWidth = getWidth() / mBoxWidth; |