diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-13 14:45:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-13 14:45:13 +0300 |
commit | 5b93d3755001f2770f0f72cb12074790025c6249 (patch) | |
tree | 2677e47bfe504bfd5c02380644a6f49c165fc26b /src/gui/setup_theme.cpp | |
parent | 24f4c6de03a3a65df1ad9100e912e968fe9b8b18 (diff) | |
download | plus-5b93d3755001f2770f0f72cb12074790025c6249.tar.gz plus-5b93d3755001f2770f0f72cb12074790025c6249.tar.bz2 plus-5b93d3755001f2770f0f72cb12074790025c6249.tar.xz plus-5b93d3755001f2770f0f72cb12074790025c6249.zip |
Add some missing cleanup on exit.
Diffstat (limited to 'src/gui/setup_theme.cpp')
-rw-r--r-- | src/gui/setup_theme.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/setup_theme.cpp b/src/gui/setup_theme.cpp index f46202eb7..f0ae897d2 100644 --- a/src/gui/setup_theme.cpp +++ b/src/gui/setup_theme.cpp @@ -384,10 +384,15 @@ Setup_Theme::~Setup_Theme() delete mLangListModel; mLangListModel = nullptr; + + delete mInfo; + mInfo = nullptr; + } void Setup_Theme::updateInfo() { + delete mInfo; mInfo = Theme::loadInfo(mTheme); if (mInfo) { |