summaryrefslogtreecommitdiffstats
path: root/src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp')
-rw-r--r--src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp b/src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp
index c521d8cac..01c0c95a0 100644
--- a/src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp
+++ b/src/compositor/hardware_integration/qwlhardwarelayerintegrationfactory.cpp
@@ -13,17 +13,17 @@ QT_BEGIN_NAMESPACE
namespace QtWayland {
-Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, loader,
+Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, qwhlifLoader,
(QtWaylandHardwareLayerIntegrationFactoryInterface_iid, QLatin1String("/wayland-hardware-layer-integration"), Qt::CaseInsensitive))
QStringList HardwareLayerIntegrationFactory::keys()
{
- return loader->keyMap().values();
+ return qwhlifLoader->keyMap().values();
}
HardwareLayerIntegration *HardwareLayerIntegrationFactory::create(const QString &name, const QStringList &args)
{
- return qLoadPlugin<HardwareLayerIntegration, HardwareLayerIntegrationPlugin>(loader(), name, args);
+ return qLoadPlugin<HardwareLayerIntegration, HardwareLayerIntegrationPlugin>(qwhlifLoader(), name, args);
}
}