Merge pull request #1472 from marcofernandezheras/Fix-Portable-Paths

Fix thememanager on portable build
This commit is contained in:
Zach 2015-09-07 18:03:46 -04:00
commit 2a83f6dd4b

View file

@ -43,7 +43,9 @@ QStringMap & ThemeManager::getAvailableThemes()
// load themes from user profile dir
dir =
#if QT_VERSION < 0x050000
#ifdef PORTABLE_BUILD
qApp->applicationDirPath() +
#elif QT_VERSION < 0x050000
QDesktopServices::storageLocation(QDesktopServices::DataLocation) +
#else
QStandardPaths::standardLocations(QStandardPaths::DataLocation).first() +
@ -141,4 +143,4 @@ void ThemeManager::themeChangedSlot()
QDir::setSearchPaths("theme", resources);
emit themeChanged();
}
}