Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
6.6.1
-
None
Description
findText method of QComboBox fails on 1e item. Looks like it skips the first in the search.
so:
QComboBox* typeComboBox = new QComboBox();
typeComboBox->addItem("first");
typeComboBox->addItem("second");
qDebug() << typeComboBox->findText("first"); // return false
qDebug() << typeComboBox->findText("second"); // return true