Hi everyone!

I'm trying to debug a program that was made on an older QT version (dont know wich one), after having troubles with the .pro file finally it builds and compiles properly.

The "stop" point is on the main.cpp

Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. [B] QApplication app(argc, argv);[/B]
  4. Q_INIT_RESOURCE(camcontrol);
  5. MainWindow mainWin;
  6. mainWin.show();
  7. return app.exec();
  8. }
To copy to clipboard, switch view to plain text mode 

Nothing after the call of QApplication is debugged, the argument of argv is the .exe file of my program, and on the debug window it sais... Stopped: "Signal-recived" from some point inside the function.

I tried to step into that function and other one and so on.... but found (understood) nothing.

Any idea?