summaryrefslogtreecommitdiff
path: root/src/extras
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2017-04-03 10:07:48 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2017-04-03 13:34:23 +0000
commit58bea5210dff23e0e125e91e94e1f933d8329521 (patch)
tree573c8d8823b7016c08beaef84307f941c221eb53 /src/extras
parent8c37d58fa21fd3cf6897e2d7d4fe1f73c983d2f4 (diff)
downloadqtquickcontrols-58bea5210dff23e0e125e91e94e1f933d8329521.tar.gz
Remove spurious Q_INIT_RESOURCE calls
These explicit resource initialization calls are only needed when linking statically. Change-Id: I5518e1b32d4fc7c1d03d35dd15bf3ce65d5eafcf Reviewed-by: Andy Shaw <andy.shaw@qt.io> Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/extras')
-rw-r--r--src/extras/plugin.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/extras/plugin.cpp b/src/extras/plugin.cpp
index a9e23321..2f58510b 100644
--- a/src/extras/plugin.cpp
+++ b/src/extras/plugin.cpp
@@ -50,9 +50,7 @@
static void initResources()
{
-#ifndef QT_STATIC
- Q_INIT_RESOURCE(extras);
-#else
+#ifdef QT_STATIC
Q_INIT_RESOURCE(qmake_QtQuick_Extras);
#endif
}