summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-11-17 08:11:20 +0100
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-11-17 09:06:26 +0100
commit92f9a3142c0b24db39e6d04f707cad65205bd374 (patch)
treedfdf25cc66c66901a46e8e8a0a34d8fd46dc5f52 /src
parent9415c8b5cd075eaa643595e779227ca623087330 (diff)
Fix compilation after QFileInfo changes
The QFileInfo constructors were made explicit in 784a290c4b08e84d895a62dada5420a3b47dde48, breaking compilation where the implicit construction was used. Fixes: QTBUG-88565 Change-Id: Icc4c335ea5cbbd21f8a9027beb57823e233b253d Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/client/qwaylandwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp
index c7e715b65..328e4f3ce 100644
--- a/src/client/qwaylandwindow.cpp
+++ b/src/client/qwaylandwindow.cpp
@@ -162,7 +162,7 @@ void QWaylandWindow::initWindow()
name.chop(8);
mShellSurface->setAppId(name);
} else {
- QFileInfo fi = QCoreApplication::instance()->applicationFilePath();
+ QFileInfo fi = QFileInfo(QCoreApplication::instance()->applicationFilePath());
QStringList domainName =
QCoreApplication::instance()->organizationDomain().split(QLatin1Char('.'),
Qt::SkipEmptyParts);