Hi, I've a strange problem with a QListWidget; have defined this connection:

Qt Code:
  1. connect(ui->listWidget, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(doSomething(QListWidgetItem*)));
To copy to clipboard, switch view to plain text mode 

doSomething() contains a simple qDebug(), just for testing. Now, when I double click an item, in the application output I got multiple time the same qDebug() message.

I'm doing anything wrong?