forked from qt-creator/qt-creator
Various FilePath::fromString -> fromUserInput changes
Change-Id: Ic9c5e2f5c0375468651557f504b101572b72ac06 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -270,7 +270,7 @@ PathChooser::PathChooser(QWidget *parent) :
|
||||
connect(d->m_lineEdit, &QLineEdit::textChanged, this, [this] {
|
||||
const QString text = d->m_lineEdit->text();
|
||||
emit pathChanged(text);
|
||||
emit filePathChanged(FilePath::fromString(text));
|
||||
emit filePathChanged(FilePath::fromUserInput(text));
|
||||
});
|
||||
|
||||
d->m_lineEdit->setMinimumWidth(120);
|
||||
|
||||
Reference in New Issue
Block a user