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:
Denis Shienkov
2019-11-28 15:37:24 +03:00
parent 221d356210
commit e6e9f4017d

View File

@@ -267,12 +267,12 @@ HostWidget::HostWidget(QWidget *parent)
: QWidget(parent) : QWidget(parent)
{ {
m_hostLineEdit = new QLineEdit(this); 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\".")); "like \"localhost\" or \"192.0.2.1\"."));
m_portSpinBox = new QSpinBox(this); m_portSpinBox = new QSpinBox(this);
m_portSpinBox->setRange(0, 65535); m_portSpinBox->setRange(0, 65535);
m_portSpinBox->setToolTip(tr("Enter TCP/IP port which will be listened by " 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); const auto layout = new QHBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0); layout->setContentsMargins(0, 0, 0, 0);
layout->addWidget(m_hostLineEdit); layout->addWidget(m_hostLineEdit);