Rename port configuration slot

Adding a parameter with a default value to the existing on_XXX slot
in a previous commit makes auto connect signal-slots by name to flag
signal not found.

So rename the slot name and add an explicit connection.
This commit is contained in:
Srivats P 2022-10-07 12:58:45 +05:30
parent 8d3f0c807f
commit 3cea0244d4
2 changed files with 5 additions and 3 deletions

View File

@ -97,8 +97,10 @@ PortsWindow::PortsWindow(PortGroupList *pgl, QWidget *parent)
connect(plm->getPortModel(), SIGNAL(modelReset()),
SLOT(when_portModel_reset()));
connect(actionPort_Configuration, SIGNAL(triggered()),
SLOT(when_actionPort_Configuration_triggered()));
connect(tvPortList, SIGNAL(activated(const QModelIndex&)),
SLOT(on_actionPort_Configuration_triggered(const QModelIndex&)));
SLOT(when_actionPort_Configuration_triggered(const QModelIndex&)));
connect(tvPortList->selectionModel(),
SIGNAL(currentChanged(const QModelIndex&, const QModelIndex&)),
this, SLOT(when_portView_currentChanged(const QModelIndex&,
@ -599,7 +601,7 @@ void PortsWindow::on_actionExclusive_Control_triggered(bool checked)
}
}
void PortsWindow::on_actionPort_Configuration_triggered(
void PortsWindow::when_actionPort_Configuration_triggered(
const QModelIndex &portIndex)
{
QModelIndex current = portIndex.isValid() ?

View File

@ -80,7 +80,7 @@ private slots:
void on_actionDisconnect_Port_Group_triggered();
void on_actionExclusive_Control_triggered(bool checked);
void on_actionPort_Configuration_triggered(
void when_actionPort_Configuration_triggered(
const QModelIndex &portIndex = QModelIndex());
private: