forked from qt-creator/qt-creator
Project: Use Utils::FileName as return type for projectFilePath()
Change-Id: If304d5e95cd9ac714100abaae35d60e3e1050eb2 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -120,9 +120,9 @@ Core::Id Project::id() const
|
||||
return d->m_id;
|
||||
}
|
||||
|
||||
QString Project::projectFilePath() const
|
||||
Utils::FileName Project::projectFilePath() const
|
||||
{
|
||||
return document()->filePath();
|
||||
return Utils::FileName::fromString(document()->filePath());
|
||||
}
|
||||
|
||||
bool Project::hasActiveBuildSettings() const
|
||||
|
||||
Reference in New Issue
Block a user