From kde-commits Thu Jun 03 21:08:26 2010 From: =?utf-8?q?Aaron=20J=2E=20Seigo?= Date: Thu, 03 Jun 2010 21:08:26 +0000 To: kde-commits Subject: KDE/kdelibs/kdecore/config Message-Id: <20100603210826.C15A9AC8C9 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=127559892409963 SVN commit 1134300 by aseigo: make plugin loading actually work M +1 -1 kconfigbackend.cpp --- trunk/KDE/kdelibs/kdecore/config/kconfigbackend.cpp #1134299:1134300 @@ -70,7 +70,7 @@ KConfigBackend* backend = 0; if (system.compare("INI", Qt::CaseInsensitive) != 0) { - QString constraint = QString("'%1' ~~ Name").arg(system); + QString constraint = QString("[X-KDE-PluginInfo-Name] ~~ '%1'").arg(system); KService::List offers = KServiceTypeTrader::self()->query("KConfigBackend", constraint); //qDebug() << "found" << offers.count() << "offers for KConfigBackend plugins with name" << system;