Quote Originally Posted by munna
There is no signal called returnPressed that is emitted by QComboBox.
You may, however, connect to combo box's internal line edit:
Qt Code:
  1. connect( comboBox_3->lineEdit(), SIGNAL( returnPressed() ), this, SLOT( readSData() ) );
To copy to clipboard, switch view to plain text mode