From kde-commits Tue Dec 07 22:29:26 2010 From: David Faure Date: Tue, 07 Dec 2010 22:29:26 +0000 To: kde-commits Subject: KDE/kdelibs/kdecore/config Message-Id: <20101207222926.F0F7BAC8A5 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=129176099431310 SVN commit 1204550 by dfaure: Another missing "resolve to real path" for the case where a KConfig is constructed with a full path (e.g. when called from makekdewidgets) M +1 -1 kconfig.cpp --- trunk/KDE/kdelibs/kdecore/config/kconfig.cpp #1204549:1204550 @@ -416,7 +416,7 @@ } // else anonymous config. // KDE5: remove these magic overloads } else if (QDir::isAbsolutePath(fileName)) - file = fileName; + file = KStandardDirs::realFilePath(fileName); else { if (type && *type) resourceType = type; // only change it if it's not empty