forked from qt-creator/qt-creator
Utils: Rename PathChooser::rawFilePath() to unxepandedFilePath()
That's what the implementation does, and judging from the using code wasn't quite clear. Change-Id: I4ca776ba4da83a36162adad2dd595eb39eb0f43d Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -342,14 +342,14 @@ void PathChooser::setEnvironment(const Environment &env)
|
||||
}
|
||||
}
|
||||
|
||||
FilePath PathChooser::rawFilePath() const
|
||||
FilePath PathChooser::unexpandedFilePath() const
|
||||
{
|
||||
return FilePath::fromUserInput(d->m_lineEdit->text());
|
||||
}
|
||||
|
||||
FilePath PathChooser::filePath() const
|
||||
{
|
||||
return d->expandedPath(rawFilePath());
|
||||
return d->expandedPath(unexpandedFilePath());
|
||||
}
|
||||
|
||||
FilePath PathChooser::absoluteFilePath() const
|
||||
|
||||
Reference in New Issue
Block a user