Hello
I have a signal/slot connected to a combobox

SIGNAL(currentIndexChanged(QString))
However, when I initially populate the combobox, it responds to this signal, and calls the slot.
How can I "switch off" the signaling from the combobox while populating it. I only want it to activate when the index is changed due to a user selecting an entry.

I looked for an "enabled" property, but couldn't find one, thinking to disable it, populate it, then enable it again.

Thanks.