In main (), I am using connect as follows:
MyThread objA;
Object :: connect (&objA, SIGNAL(MySignal()), &objA, SLOT(MySlot()));
.pro file is:
######################################################################
# Automatically generated by qmake (2.01a) Thu Dec 1 13:05:43 2011
######################################################################
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
# Input
HEADERS += qtWheel.h
SOURCES += qtWheel.cpp
I saw the above error during run time. Please guide.
I have found the solution:
The parameters of signal and slot functions were mismatching! As soon as I fixed them, the slot got called.
Thanks to: http://samdutton.wordpress.com/2008/10/03/debugging-signals-and-slots-in-qt/