summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-06-02 11:31:46 +0200
committerAndras Becsi <andras.becsi@theqtcompany.com>2015-06-03 07:07:26 +0000
commit76635345d96413944b81f5cf3d0f3dffa0a7b743 (patch)
treeb716cceb38ef89644f103e5e70fe156d061d1ea2
parent47ee541a9f0f8ee811187cf37838264379153163 (diff)
Fix inconsistent dll linkage warnings
Use the correct export macro in qwebenginescriptcollection.h else we'll end up with inconsistent dll linkage issues with msvc. Change-Id: Ie38bc9fd7ec120b68ef65e6b661536a942aea9f6 Reviewed-by: Pierre Rossi <pierre.rossi@theqtcompany.com>
-rw-r--r--src/webenginewidgets/api/qwebenginescriptcollection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webenginewidgets/api/qwebenginescriptcollection.h b/src/webenginewidgets/api/qwebenginescriptcollection.h
index c8e40c5da..72cb5e813 100644
--- a/src/webenginewidgets/api/qwebenginescriptcollection.h
+++ b/src/webenginewidgets/api/qwebenginescriptcollection.h
@@ -47,7 +47,7 @@
QT_BEGIN_NAMESPACE
class QWebEngineScriptCollectionPrivate;
-class Q_WEBENGINE_EXPORT QWebEngineScriptCollection {
+class QWEBENGINEWIDGETS_EXPORT QWebEngineScriptCollection {
public:
~QWebEngineScriptCollection();
bool isEmpty() const { return !count(); }