From fb451a380c088f315e60de92288326fc7fdfd394 Mon Sep 17 00:00:00 2001 From: David Faure Date: Sun, 23 Mar 2014 22:57:45 +0100 Subject: Rename readConfig() to load(), to make it clear it's loading from disk. As discussed with Matthew Dawson in review 116461. --- src/core/kcoreconfigskeleton.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/kcoreconfigskeleton.cpp') diff --git a/src/core/kcoreconfigskeleton.cpp b/src/core/kcoreconfigskeleton.cpp index 2ae3a9bd..69a4bf04 100644 --- a/src/core/kcoreconfigskeleton.cpp +++ b/src/core/kcoreconfigskeleton.cpp @@ -1061,7 +1061,7 @@ void KCoreConfigSkeleton::setDefaults() usrSetDefaults(); } -void KCoreConfigSkeleton::readConfig() +void KCoreConfigSkeleton::load() { d->mConfig->reparseConfiguration(); read(); @@ -1091,7 +1091,7 @@ bool KCoreConfigSkeleton::writeConfig() if (!d->mConfig->sync()) { return false; } - readConfig(); + load(); emit configChanged(); } return true; -- cgit v1.2.1