forked from qt-creator/qt-creator
ProjectExplorer: Rename BaseStringAspect::{f,setF}ileName
... to filePath and setFilePath. In line with Utils::FilePath. Change-Id: I7115b91876542629c3d61c8259bbd8d9f4022fc1 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -153,12 +153,12 @@ void BaseStringAspect::toMap(QVariantMap &map) const
|
||||
d->m_checker->toMap(map);
|
||||
}
|
||||
|
||||
FilePath BaseStringAspect::fileName() const
|
||||
FilePath BaseStringAspect::filePath() const
|
||||
{
|
||||
return FilePath::fromString(d->m_value);
|
||||
}
|
||||
|
||||
void BaseStringAspect::setFileName(const FilePath &val)
|
||||
void BaseStringAspect::setFilePath(const FilePath &val)
|
||||
{
|
||||
setValue(val.toString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user