From b35a4dd02c652d12dd148d403f2849d31457de8c Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Sat, 30 Apr 2011 09:32:48 +0200 Subject: [PATCH] use the id() to build the config off of this falls back to objectName but uses the pluginName first. more sensible. --- abstractrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abstractrunner.cpp b/abstractrunner.cpp index 6c56ea1e9..4a547f42f 100644 --- a/abstractrunner.cpp +++ b/abstractrunner.cpp @@ -78,7 +78,7 @@ AbstractRunner::~AbstractRunner() KConfigGroup AbstractRunner::config() const { - QString group = objectName(); + QString group = id(); if (group.isEmpty()) { group = "UnnamedRunner"; }