summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/input/frontend/qinputdeviceintegrationfactory.cpp4
-rw-r--r--src/render/io/qsceneparserfactory.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/input/frontend/qinputdeviceintegrationfactory.cpp b/src/input/frontend/qinputdeviceintegrationfactory.cpp
index 246736d6c..64c862a76 100644
--- a/src/input/frontend/qinputdeviceintegrationfactory.cpp
+++ b/src/input/frontend/qinputdeviceintegrationfactory.cpp
@@ -78,10 +78,10 @@ QInputDeviceIntegration *QInputDeviceIntegrationFactory::create(const QString &n
#ifndef QT_NO_LIBRARY
if (!pluginPath.isEmpty()) {
QCoreApplication::addLibraryPath(pluginPath);
- if (QInputDeviceIntegration *ret = qLoadPlugin1<QInputDeviceIntegration, QInputDevicePlugin>(directLoader(), name, args))
+ if (QInputDeviceIntegration *ret = qLoadPlugin<QInputDeviceIntegration, QInputDevicePlugin>(directLoader(), name, args))
return ret;
}
- if (QInputDeviceIntegration *ret = qLoadPlugin1<QInputDeviceIntegration, QInputDevicePlugin>(loader(), name, args))
+ if (QInputDeviceIntegration *ret = qLoadPlugin<QInputDeviceIntegration, QInputDevicePlugin>(loader(), name, args))
return ret;
#endif
return Q_NULLPTR;
diff --git a/src/render/io/qsceneparserfactory.cpp b/src/render/io/qsceneparserfactory.cpp
index 8fba44db9..f02996b11 100644
--- a/src/render/io/qsceneparserfactory.cpp
+++ b/src/render/io/qsceneparserfactory.cpp
@@ -79,10 +79,10 @@ QAbstractSceneParser *QSceneParserFactory::create(const QString &name, const QSt
#ifndef QT_NO_LIBRARY
if (!pluginPath.isEmpty()) {
QCoreApplication::addLibraryPath(pluginPath);
- if (QAbstractSceneParser *ret = qLoadPlugin1<QAbstractSceneParser, QSceneParserPlugin>(directLoader(), name, args))
+ if (QAbstractSceneParser *ret = qLoadPlugin<QAbstractSceneParser, QSceneParserPlugin>(directLoader(), name, args))
return ret;
}
- if (QAbstractSceneParser *ret = qLoadPlugin1<QAbstractSceneParser, QSceneParserPlugin>(loader(), name, args))
+ if (QAbstractSceneParser *ret = qLoadPlugin<QAbstractSceneParser, QSceneParserPlugin>(loader(), name, args))
return ret;
#endif
return Q_NULLPTR;