Qlineedit has a method called isModified which returns a bool saying that if the text has been changed or not..

I dont see where Qcombobox has an isModified method for when the index is changed.. Is there something that will allow me to find out if the Qcombobox has changed without having to catch the currentIndexChanged signal?

What im trying to do is have a bunch of Qcombobox's on the screen with prefilled data and I want to know in the end which Qcombobox's were changed so I can update a database.. I know I can just update the database using itemText from each Qcombobox weather it was changed or not but I wanted to avoid that if I can..