Hi,

I have a template class c_A that i want to send signals to from a small QWidget containing buttons. Avoiding the Q_OBJECT/template problem, i made a c_AInterface class that has a public virtual slot Slot(). c_A inherits from c_AInterface and overides Slot(). In the constructor of another QDialog (that contains the small QWidget as well as an instance of c_A) i connect a button of the QWidget to the slot Slot(). When i press the button... (you guessed it)... nothing happens. The Slot() is not called.

My question... How do you debug something like that (i'm using Microsoft Visual Studio 2008). Is there any way to "follow" the signal/slot mechanism or is there a window/console that errors are sent to?

Kind Regards,
Daniel Dekkers