From kde-commits Sat Apr 14 08:22:28 2007 From: Thomas Zander Date: Sat, 14 Apr 2007 08:22:28 +0000 To: kde-commits Subject: koffice/libs/kofficecore Message-Id: <1176538948.745587.32562.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=117661791804194 SVN commit 653786 by zander: Fixlet and use CamelCase config names M +2 -2 KoDockRegistry.cpp M +1 -1 KoPluginLoader.cpp --- trunk/koffice/libs/kofficecore/KoDockRegistry.cpp #653785:653786 @@ -27,8 +27,8 @@ void KoDockRegistry::init() { KoPluginLoader::PluginsConfig config; - config.whiteList = "docker-plugins"; - config.blacklist = "disabled-docker-plugins"; + config.whiteList = "DockerPlugins"; + config.blacklist = "DockerPluginsDisabled"; config.group = "koffice"; KoPluginLoader::instance()->load( QString::fromLatin1("KOffice/Dock"), QString(), config); } --- trunk/koffice/libs/kofficecore/KoPluginLoader.cpp #653785:653786 @@ -88,7 +88,7 @@ QString lib = service->library(); if(whiteList.contains(lib)) plugins.append(service); - else if(!firstStart && !blacklist.contains(lib)) { // also load newly installed plugins. + else if(!firstStart && !knownList.contains(lib)) { // also load newly installed plugins. plugins.append(service); configChanged = true; }