how to emit a signal when another item is selected in a combo box
Solved
General and Desktop
-
You dont need to emit a signal by yourself. There are already signals for this. You just have to react on them.
See: https://doc.qt.io/qt-5/qcombobox.html#signalsI guess you are looking for
currentIndexChanged(int index)
orcurrentTextChanged(const QString &text)