The manual says:

Qt Code:
  1. void QComboBox::addItem ( const QString & text, const QVariant & userData = QVariant() )
  2. //Adds an item to the combobox with the given text, and containing the specified userData. The item is appended to the list of existing items.
To copy to clipboard, switch view to plain text mode 

but how can i get the userData of a given item?

Bye