ProjectExplorer: Add missing BaseStringAspect::setFileName()

Was declared, but not implemented.

Change-Id: Ieeb8d021762d6254cdd5776e08d51cfd5a736c01
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2019-04-17 15:20:24 +02:00
parent ba70d6a803
commit a35c5901ea

View File

@@ -141,6 +141,11 @@ FileName BaseStringAspect::fileName() const
return FileName::fromString(d->m_value);
}
void BaseStringAspect::setFileName(const FileName &val)
{
setValue(val.toString());
}
void BaseStringAspect::setLabelText(const QString &labelText)
{
d->m_labelText = labelText;