Jak mogę uzyskać wybraną WARTOŚĆ z QCombobox?

W Qt mogę dostaćselected text aQComboBox za pomocącombobox->currentText() metoda. Jak mogę dostaćselected value?

Szukałem pomocy, ale nie mogłem znaleźć metodycurrentData() które spodziewałem się znaleźć. Mogłem tylko znaleźćcombobox->currentIndex()

Czy jest mądrzejszy sposób, aby to zrobić inaczej niżcombobox->itemData(combobox->currentIndex())?

Aktualizacja: Nie jest to już konieczne od Qt 5. AcurrentData() metoda została dodanahttp://doc.qt.io/qt-5/qcombobox.html#currentData-prop

questionAnswers(12)

yourAnswerToTheQuestion