forked from qt-creator/qt-creator
More FileName::appendPath() -> .pathAppended()
Change-Id: I403d34e4f52f758339c158efc7a11fd329e3e043 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -119,9 +119,7 @@ QString CodeStylePool::settingsDir() const
|
||||
|
||||
Utils::FileName CodeStylePool::settingsPath(const QByteArray &id) const
|
||||
{
|
||||
Utils::FileName path = Utils::FileName::fromString(settingsDir());
|
||||
path.appendPath(QString::fromUtf8(id + ".xml"));
|
||||
return path;
|
||||
return Utils::FileName::fromString(settingsDir()).pathAppended(QString::fromUtf8(id + ".xml"));
|
||||
}
|
||||
|
||||
QList<ICodeStylePreferences *> CodeStylePool::codeStyles() const
|
||||
|
||||
Reference in New Issue
Block a user