summaryrefslogtreecommitdiffstats
path: root/src/core/web_contents_adapter.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-10-23 11:36:58 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-10-23 10:23:33 +0000
commit94bb5644907c16b742d05a6f51cc82785b945f4a (patch)
treeb308ee83446e74ad76c7ebd358e058b7627a3c04 /src/core/web_contents_adapter.cpp
parentfa2e7351245ab7f2050f605978bbaba43bb32c57 (diff)
Remove some outdated Qt version checks
We can't not build with older than Qt 5.9 anyway due to QSG and qmake changes. Change-Id: Iff0247e70d9ffc1e045e2c571f0089d68df9a589 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'src/core/web_contents_adapter.cpp')
-rw-r--r--src/core/web_contents_adapter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/web_contents_adapter.cpp b/src/core/web_contents_adapter.cpp
index 762d9f53a..5b9e61268 100644
--- a/src/core/web_contents_adapter.cpp
+++ b/src/core/web_contents_adapter.cpp
@@ -1431,11 +1431,7 @@ bool WebContentsAdapter::handleDropDataFileContents(const content::DropData &dro
const auto maybeFilename = dropData.GetSafeFilenameForImageFileContents();
const QString fileName = maybeFilename ? toQt(maybeFilename->AsUTF16Unsafe()) : QString();
-#if (QT_VERSION >= QT_VERSION_CHECK(5, 9, 0))
const QString &filePath = m_dndTmpDir->filePath(fileName);
-#else
- const QString &filePath = m_dndTmpDir->path() + QLatin1Char('/') + fileName;
-#endif
QFile file(filePath);
if (!file.open(QIODevice::WriteOnly)) {
qWarning("Cannot write temporary file %s.", qUtf8Printable(filePath));