Commit 485e4965 authored by Michael Brüning's avatar Michael Brüning Committed by Michael Bruning
Browse files

Create a QCoreApplication in QtWebEngineProcess as well.


A QCoreApplication is needed in order to correctly load the
configuration from qt.conf and setup the Qt environment variables
accordingly. This is important to be able to deploy applications.

This patch creates a dummy QCoreApplication in process main to
have the environment setup correctly.

Change-Id: If536b9edf357d5925fee02f2528872101139f87e
Reviewed-by: default avatarSimon Hausmann <simon.hausmann@digia.com>
Showing with 5 additions and 0 deletions
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
#include "process_main.h" #include "process_main.h"
#include <QCoreApplication>
#include <stdio.h> #include <stdio.h>
#if defined(OS_LINUX) #if defined(OS_LINUX)
...@@ -147,6 +148,10 @@ int stat64_proxy(const char *path, struct stat64 *buf) ...@@ -147,6 +148,10 @@ int stat64_proxy(const char *path, struct stat64 *buf)
int main(int argc, const char **argv) int main(int argc, const char **argv)
{ {
// QCoreApplication needs a non-const pointer, while the
// ContentMain in Chromium needs the pointer to be const.
QCoreApplication qtApplication(argc, const_cast<char**>(argv));
return QtWebEngine::processMain(argc, argv); return QtWebEngine::processMain(argc, argv);
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment