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:
int main(int argc, char *argv[])
{
MainWindow w;
w.show();
return a.exec();
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
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?
Bookmarks