Hi, i created an empty project (it only has a mainwindow invoqued on main.cpp) but i'm not able to debug it, the code of the main.cpp looks like this:
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. MainWindow w;
  5. w.show();
  6. return a.exec();
  7. }
To copy to clipboard, switch view to plain text mode 

But it stops at the QApplication a(argc, argv); line.

And the message: Stopped: "signal-received"

But when i decide to build a release and run it, it works without any problem

Can any one help me?