Quote Originally Posted by ggdev001 View Post
The thing is it killed my app but I could not find that warning message mentioned above... ???
Maybe it's not an assertion that killed your app.

Qt Code:
  1. #include <QtGlobal>
  2.  
  3. int main() {
  4. Q_ASSERT(false);
  5. return 0;
  6. }
To copy to clipboard, switch view to plain text mode 

ASSERT: "false" in file main.cpp, line 4