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:
@@ -126,14 +126,14 @@ Utils::FilePath BuildConfiguration::buildDirectory() const
|
||||
|
||||
Utils::FilePath BuildConfiguration::rawBuildDirectory() const
|
||||
{
|
||||
return m_buildDirectoryAspect->fileName();
|
||||
return m_buildDirectoryAspect->filePath();
|
||||
}
|
||||
|
||||
void BuildConfiguration::setBuildDirectory(const Utils::FilePath &dir)
|
||||
{
|
||||
if (dir == m_buildDirectoryAspect->fileName())
|
||||
if (dir == m_buildDirectoryAspect->filePath())
|
||||
return;
|
||||
m_buildDirectoryAspect->setFileName(dir);
|
||||
m_buildDirectoryAspect->setFilePath(dir);
|
||||
emitBuildDirectoryChanged();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user