Ok I have Qt-Creator running my app in debug mode. I am able to stop at SOME breakpoints; however, the code I really want to debug is invoked via the signal/slot mechanism as follows:
connect(saveFileButton, SIGNAL(clicked()), this, SLOT(saveParameters()));
I set a few breakpoints in saveParameters() and the breakpoints are never hit.
How can I verify that the saveParameters slot is actually connected to the saveFileButton clicked signal at runtime?