I was trying to use use signals and slots in one of my class when I got this message as soon as I run the application :
QObject::connect: No such signal Scene::sceneRectChanged(QRectF) in graphicsview\qgraphicsview.cpp:1723
My class Scene
derives from QGraphicsScene
and QObject
Why is the control checking for such a signal in the library files ?
I have actually not used this signal in any of the connections I am making. I just have a custom SIGNAL
called void sceneChanged();
in my derived class.