summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Rimpo <jrim@rimpo.org>2017-12-13 12:29:23 -0600
committerJeremy Rimpo <jrim@rimpo.org>2017-12-13 12:29:23 -0600
commit027f941bb10b9dde2207d1eaa316bd63b4f8e9d4 (patch)
treeb905a4c8280bdce21324b13050af72770dc05680 /src
parent083d1078753698b5ff347d91aa17219fd1e1cb5a (diff)
Properly shut down QtWebEngine
Diffstat (limited to 'src')
-rw-r--r--src/modinfodialog.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp
index c586c6b6..d43808b6 100644
--- a/src/modinfodialog.cpp
+++ b/src/modinfodialog.cpp
@@ -148,6 +148,8 @@ ModInfoDialog::~ModInfoDialog()
m_ModInfo->setNotes(ui->notesEdit->toPlainText());
saveCategories(ui->categoriesTree->invisibleRootItem());
saveIniTweaks(); // ini tweaks are written to the ini file directly. This is the only information not managed by ModInfo
+ delete ui->descriptionView->page();
+ delete ui->descriptionView;
delete ui;
delete m_Settings;
}