forked from qt-creator/qt-creator
RemoteLinux: Use remote path choosers for gdbserver and qml paths
Change-Id: Ibf65b08bc1cb9d92a6e7561bd1e97a3e13ea5a7d Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -530,6 +530,16 @@ void PathChooser::setDefaultValue(const QString &defaultValue)
|
||||
d->m_lineEdit->validate();
|
||||
}
|
||||
|
||||
void PathChooser::setPlaceholderText(const QString &placeholderText)
|
||||
{
|
||||
d->m_lineEdit->setPlaceholderText(placeholderText);
|
||||
}
|
||||
|
||||
void PathChooser::setToolTip(const QString &toolTip)
|
||||
{
|
||||
d->m_lineEdit->setToolTip(toolTip);
|
||||
}
|
||||
|
||||
FancyLineEdit::ValidationFunction PathChooser::defaultValidationFunction() const
|
||||
{
|
||||
return std::bind(&PathChooser::validatePath, this, std::placeholders::_1, std::placeholders::_2);
|
||||
|
||||
Reference in New Issue
Block a user