From: Frank Reininghaus Date: Wed, 31 Oct 2012 21:43:40 +0000 (+0100) Subject: Only store the HomeUrl in dolphinrc if it is not the user's home folder X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/bc72aeeb8f47b94f30e6226169d2d5602433ac57 Only store the HomeUrl in dolphinrc if it is not the user's home folder This fixes the problem that copying the dolphinrc from another user results in Dolphin starting up in a folder that might wither not be accessible or not exist at all. BUG: 308569 FIXED-IN: 4.9.3 --- diff --git a/src/settings/dolphin_generalsettings.kcfg b/src/settings/dolphin_generalsettings.kcfg index 050750199..849a9c75c 100644 --- a/src/settings/dolphin_generalsettings.kcfg +++ b/src/settings/dolphin_generalsettings.kcfg @@ -5,6 +5,7 @@ xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd"> QDir + KUrl kglobalsettings.h @@ -30,7 +31,7 @@ - QDir::homePath() + KUrl(QDir::homePath()).prettyUrl()