diff --git a/src/process/main.cpp b/src/process/main.cpp index ec523ad9bb00b576d01a25d2cbc2e8ccebd0ecf9..c340b19655a77cab60cb8c615b717222f6a32ebb 100644 --- a/src/process/main.cpp +++ b/src/process/main.cpp @@ -36,6 +36,7 @@ #include "process_main.h" +#include <QCoreApplication> #include <stdio.h> #if defined(OS_LINUX) @@ -147,6 +148,10 @@ int stat64_proxy(const char *path, struct stat64 *buf) 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); }