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