How to read Values from QComboBox instead of Indexes . I am able to get Indexes for QComboBox using currentIndex() function. But I want to get value of currentIndex.

Ex: Index Value
0 10
1 11
2 12

If I select '0' I want 10 to be printed. With currentIndex() function I can print Indexes as '0', '1' etc only.

How can I get the values for that corresponding indexes?

Thanks
Arun