From fbd753e39a2e37e91ebb9d1bbce8e89d087eddb1 Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 12 Sep 2016 21:53:36 +0200 Subject: [PATCH] Fix missing include --- gui/downloadinteraction.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/downloadinteraction.cpp b/gui/downloadinteraction.cpp index 40117a2..1ac3680 100644 --- a/gui/downloadinteraction.cpp +++ b/gui/downloadinteraction.cpp @@ -10,6 +10,7 @@ #include #include #include +#include using namespace Network; @@ -214,7 +215,7 @@ void DownloadInteraction::downloadHasSslErrors(Download *download, size_t option details.append(error.certificate().toText()); } } - QMessageBox *dlg = new QMessageBox(m_parentWidget); + auto *dlg = new QMessageBox(m_parentWidget); dlg->setModal(false); dlg->setWindowTitle(tr("SSL errors occured") % QStringLiteral(" - ") % QCoreApplication::applicationName()); dlg->setTextFormat(Qt::RichText);