Merge pull request #1572 from pejakm/prof_fix

Correct profile path. Fixes #1570
remotes/origin/falkon
David Rosca 11 years ago
commit 841c956262
  1. 2
      src/lib/app/profilemanager.cpp

@ -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;

Loading…
Cancel
Save