┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings
diff options
context:
space:
mode:
authorAllen Winter <[email protected]>2009-05-29 16:01:24 +0000
committerAllen Winter <[email protected]>2009-05-29 16:01:24 +0000
commit2701ec1c25dfaa25852fffeaf79eef1185cd5c42 (patch)
tree32d2fe36754c983c0a4fffe8e54143842e915ac1 /src/settings
parent5a4412070c2829d9b440da1913230000469f202b (diff)
Krazy knows about KSharedPtrs now so no need to exclude
svn path=/trunk/KDE/kdebase/apps/; revision=974528
Diffstat (limited to 'src/settings')
-rw-r--r--src/settings/previewssettingspage.cpp2
-rw-r--r--src/settings/servicessettingspage.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/settings/previewssettingspage.cpp b/src/settings/previewssettingspage.cpp
index 3db976871..f117183d4 100644
--- a/src/settings/previewssettingspage.cpp
+++ b/src/settings/previewssettingspage.cpp
@@ -143,7 +143,7 @@ bool PreviewsSettingsPage::event(QEvent* event)
if ((event->type() == QEvent::Polish) && !m_initialized) {
// load all available plugins for previews
const KService::List plugins = KServiceTypeTrader::self()->query("ThumbCreator");
- foreach (const KSharedPtr<KService>& service, plugins) { // krazy:exclude=foreach
+ foreach (const KSharedPtr<KService>& service, plugins) {
QListWidgetItem* item = new QListWidgetItem(service->name(),
m_previewPluginsList);
item->setData(Qt::UserRole, service->desktopEntryName());
diff --git a/src/settings/servicessettingspage.cpp b/src/settings/servicessettingspage.cpp
index 4a1ec1f86..a58df2096 100644
--- a/src/settings/servicessettingspage.cpp
+++ b/src/settings/servicessettingspage.cpp
@@ -98,7 +98,7 @@ void ServicesSettingsPage::loadServices()
const KConfigGroup showGroup = config.group("Show");
const KService::List entries = KServiceTypeTrader::self()->query("KonqPopupMenu/Plugin");
- foreach (const KSharedPtr<KService>& service, entries) { // krazy:exclude=foreach
+ foreach (const KSharedPtr<KService>& service, entries) {
const QString file = KStandardDirs::locate("services", service->entryPath());
const QList<KServiceAction> serviceActions =
KDesktopFileActions::userDefinedServices(file, true);