summaryrefslogtreecommitdiffstats
path: root/src/core/content_client_qt.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-06-30 08:56:25 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-06-30 15:08:36 +0200
commit3b93882e2b2397b7e259da30552ff1ee05e0036c (patch)
tree4b3e28b5071c610f58d6d3d94a488b26367049a0 /src/core/content_client_qt.cpp
parent7c966f59a8f8f8a51ffe4325f0809e0d3363a9fc (diff)
Replace qgetenv with qEnvironmentVariable
This preserves unicode characters in the environment variable on Windows. Fixes: QTBUG-85054 Change-Id: I3352cc3db4ce8d7b9b352c1634e3239954780618 Reviewed-by: Kirill Burtsev <kirill.burtsev@qt.io>
Diffstat (limited to 'src/core/content_client_qt.cpp')
-rw-r--r--src/core/content_client_qt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/content_client_qt.cpp b/src/core/content_client_qt.cpp
index 083e10f2a..647d45819 100644
--- a/src/core/content_client_qt.cpp
+++ b/src/core/content_client_qt.cpp
@@ -199,7 +199,7 @@ void AddPepperFlashFromSystem(std::vector<content::PepperPluginInfo>* plugins)
{
QStringList pluginPaths;
#if defined(Q_OS_WIN)
- QString winDir = QDir::fromNativeSeparators(qgetenv("WINDIR"));
+ QString winDir = QDir::fromNativeSeparators(qEnvironmentVariable("WINDIR"));
if (winDir.isEmpty())
winDir = QString::fromLatin1("C:/Windows");
QDir pluginDir(winDir + "/System32/Macromed/Flash");