diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-08-19 09:04:58 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-08-19 09:04:58 +0200 |
commit | eb747e08b78d8630413b9bdb3a96108ccfcc2ac8 (patch) | |
tree | c6edecbc9c79e08dcb03d0248f2840a057fc8d24 /application/widgets/LogView.cpp | |
parent | 67eca08b2260f19ff296c0b6cb73eb3b0479e4b2 (diff) | |
download | PrismLauncher-eb747e08b78d8630413b9bdb3a96108ccfcc2ac8.tar.gz PrismLauncher-eb747e08b78d8630413b9bdb3a96108ccfcc2ac8.tar.bz2 PrismLauncher-eb747e08b78d8630413b9bdb3a96108ccfcc2ac8.zip |
NOISSUE fix minor memory leaks
Diffstat (limited to 'application/widgets/LogView.cpp')
-rw-r--r-- | application/widgets/LogView.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/widgets/LogView.cpp b/application/widgets/LogView.cpp index 9cd91b2e..8e0346fa 100644 --- a/application/widgets/LogView.cpp +++ b/application/widgets/LogView.cpp @@ -10,6 +10,7 @@ LogView::LogView(QWidget* parent) : QPlainTextEdit(parent) LogView::~LogView() { + delete m_defaultFormat; } void LogView::setWordWrap(bool wrapping) |