forked from qt-creator/qt-creator
ProjectExplorer: Add missing BaseStringAspect::setFileName()
Was declared, but not implemented. Change-Id: Ieeb8d021762d6254cdd5776e08d51cfd5a736c01 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -141,6 +141,11 @@ FileName BaseStringAspect::fileName() const
|
|||||||
return FileName::fromString(d->m_value);
|
return FileName::fromString(d->m_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BaseStringAspect::setFileName(const FileName &val)
|
||||||
|
{
|
||||||
|
setValue(val.toString());
|
||||||
|
}
|
||||||
|
|
||||||
void BaseStringAspect::setLabelText(const QString &labelText)
|
void BaseStringAspect::setLabelText(const QString &labelText)
|
||||||
{
|
{
|
||||||
d->m_labelText = labelText;
|
d->m_labelText = labelText;
|
||||||
|
|||||||
Reference in New Issue
Block a user