forked from qt-creator/qt-creator
BareMetal: Remove 'GDB' mention from the HostWidget tooltips
... because this widget can be used from any provider (not only the GDB). Change-Id: I9d77f30f364dc63367923dc461693fc781a8a8c6 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -267,12 +267,12 @@ HostWidget::HostWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
m_hostLineEdit = new QLineEdit(this);
|
||||
m_hostLineEdit->setToolTip(tr("Enter TCP/IP hostname of the GDB server provider, "
|
||||
m_hostLineEdit->setToolTip(tr("Enter TCP/IP hostname of the debug server, "
|
||||
"like \"localhost\" or \"192.0.2.1\"."));
|
||||
m_portSpinBox = new QSpinBox(this);
|
||||
m_portSpinBox->setRange(0, 65535);
|
||||
m_portSpinBox->setToolTip(tr("Enter TCP/IP port which will be listened by "
|
||||
"the GDB server provider."));
|
||||
"the debug server."));
|
||||
const auto layout = new QHBoxLayout(this);
|
||||
layout->setContentsMargins(0, 0, 0, 0);
|
||||
layout->addWidget(m_hostLineEdit);
|
||||
|
Reference in New Issue
Block a user