Hello

I'm using Qt4 and MSVS6 and I have a problem that I don't get any messages when connect() doesn't work.

here's an example that can't work - there's no function called bling() - but I don't get any message telling me that - I used to get a message in Qt3
Qt Code:
  1. findAction = new QAction("find", this);
  2. connect(findAction, SIGNAL(triggered()), this, SLOT(bling()));
To copy to clipboard, switch view to plain text mode 

Is it a config problem?

Thanks
K