forked from qt-creator/qt-creator
Utils: Make FilePathAspect::value() return a QString
This is meant to be the "internal", raw, unexpanded value that does not necessarily match a scheme://host/path pattern before expansion. Change-Id: I627afbe1e9682d85c5bb04542c7354760ba9a13f Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
@@ -1319,17 +1319,12 @@ FilePath FilePathAspect::operator()() const
|
||||
return FilePath::fromUserInput(StringAspect::value());
|
||||
}
|
||||
|
||||
FilePath FilePathAspect::value() const
|
||||
{
|
||||
return FilePath::fromUserInput(StringAspect::value());
|
||||
}
|
||||
|
||||
FilePath FilePathAspect::expandedValue() const
|
||||
{
|
||||
return FilePath::fromUserInput(StringAspect::value());
|
||||
}
|
||||
|
||||
QString FilePathAspect::stringValue() const
|
||||
QString FilePathAspect::value() const
|
||||
{
|
||||
return StringAspect::value();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user