OK. Ihave this little piece of example code:

Qt Code:
  1. QListView *seriesList = new QListView;
  2. QPushButton *bt001 = new QPushButton("001");
  3. seriesList->show();
  4. bt001->show();
  5. QListView::connect(seriesList, SIGNAL(clicked()), seriesList, SLOT(updateProbe()));
  6. QPushButton::connect(bt001, SIGNAL(clicked()), bt001, SLOT(updateProble()));
To copy to clipboard, switch view to plain text mode 

When I run the project, debug messaging system sends a warning:

Qt Code:
  1. Object::connect: No such signal QListView::clicked()
To copy to clipboard, switch view to plain text mode 

QPushButton::connect
works correctly. I've tried with another signals from QListView::connect but always I obtain the same message and connect doesn't work.