1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-03 04:37:33 +01:00

Fix issues reported by clang-format

This commit is contained in:
Cesar Enrique Garcia Dabo 2019-12-10 18:45:06 +01:00
parent 397145d21f
commit a7ad66d028

View File

@ -345,9 +345,9 @@ QString GetConfigPath(ConfigPath config) {
return mac::GetApplicationSupportPath() + "/" +
QCoreApplication::organizationName();
#else
return QString("%1/%2")
.arg(QStandardPaths::writableLocation(QStandardPaths::ConfigLocation),
QCoreApplication::organizationName());
return QString("%1/%2").arg(
QStandardPaths::writableLocation(QStandardPaths::ConfigLocation),
QCoreApplication::organizationName());
#endif
} break;
@ -356,9 +356,9 @@ QString GetConfigPath(ConfigPath config) {
return GetConfigPath(Path_Root) + "/cache";
}
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
return QString("%1/%2")
.arg(QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation),
QCoreApplication::organizationName());
return QString("%1/%2").arg(QStandardPaths::writableLocation(
QStandardPaths::GenericCacheLocation),
QCoreApplication::organizationName());
#else
return GetConfigPath(Path_Root);
#endif