diff --git a/src/scriptengines/qml/plasmoid/wallpaperinterface.cpp b/src/scriptengines/qml/plasmoid/wallpaperinterface.cpp index f1da57143..844df0cdb 100644 --- a/src/scriptengines/qml/plasmoid/wallpaperinterface.cpp +++ b/src/scriptengines/qml/plasmoid/wallpaperinterface.cpp @@ -100,10 +100,10 @@ KConfigLoader *WallpaperInterface::configScheme() cfg = KConfigGroup(&cfg, "Wallpaper"); if (xmlPath.isEmpty()) { - m_configLoader = new KConfigLoader(cfg, 0); + m_configLoader = new KConfigLoader(cfg, 0, this); } else { QFile file(xmlPath); - m_configLoader = new KConfigLoader(cfg, &file); + m_configLoader = new KConfigLoader(cfg, &file, this); } }