1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Merge pull request #1572 from pejakm/prof_fix

Correct profile path. Fixes #1570
This commit is contained in:
David Rosca 2015-01-20 23:44:29 +01:00
commit 841c956262

View File

@ -114,7 +114,7 @@ int ProfileManager::createProfile(const QString &profileName)
bool ProfileManager::removeProfile(const QString &profileName)
{
QDir dir(DataPaths::path(DataPaths::Profiles) + profileName);
QDir dir(DataPaths::path(DataPaths::Profiles) + QLatin1Char('/') + profileName);
if (!dir.exists()) {
return false;