diff options
author | Christian Strømme <[email protected]> | 2015-08-28 14:30:26 +0200 |
---|---|---|
committer | Christian Stromme <[email protected]> | 2015-08-28 14:50:59 +0000 |
commit | 1b5a69309d2702b8339c9829f86ea685ca4ad903 (patch) | |
tree | ec55509dd23ef48149ee45536253a831ff0d4fe4 | |
parent | 01eb75e885aed60036a9039a5b82fd99f4e50e7f (diff) |
Add missing header in qtwebviewfunctions.v5.6.0-alpha1
We need to include the header for QByteArray, as it's required when
calling qputenv().
Change-Id: I245d769b050525719dc6db202a6724ce887ba4a7
Reviewed-by: Yoann Lopes <[email protected]>
-rw-r--r-- | src/webview/qtwebviewfunctions.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webview/qtwebviewfunctions.cpp b/src/webview/qtwebviewfunctions.cpp index 9da8f8d..f773213 100644 --- a/src/webview/qtwebviewfunctions.cpp +++ b/src/webview/qtwebviewfunctions.cpp @@ -40,6 +40,10 @@ #include <QtWebEngine/qtwebengineglobal.h> #endif // QT_WEBVIEW_WEBENGINE_BACKEND +#ifdef Q_OS_OSX +#include <QtCore/qbytearray.h> +#endif + QT_BEGIN_NAMESPACE /*! |