diff --git a/src/konfigurator/konfigurator.cpp b/src/konfigurator/konfigurator.cpp index e4fa19fca324a12e07cf750886a494d207d95793..9ede708c2729a5f06a753d2836f85fb0232765d9 100644 --- a/src/konfigurator/konfigurator.cpp +++ b/src/konfigurator/konfigurator.cpp @@ -228,8 +228,8 @@ void KWalletConfig::load() QString walletName = *i; // perform cleanup in the kwalletrc file, by removing entries that correspond to non-existent // (previously deleted, for example) wallets - QString path = QStandardPaths::writableLocation(QStandardPaths::DataLocation); - path.append(QString("/kwallet/%1.kwl").arg(walletName)); + QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + path.append(QString("/kwalletd/%1.kwl").arg(walletName)); if (!QFile::exists(path)) { // if the wallet no longer exists, delete the entries from the configuration file and skip to next entry KConfigGroup cfgAllow = KSharedConfig::openConfig("kwalletrc")->group("Auto Allow");