Quantcast
Channel: Qt DevNet forums: Qt WebKit
Viewing all articles
Browse latest Browse all 542

QWebView crashes in Release, works in debug

$
0
0
Hi all, here is my minimum example:  QApplication app(argc, argv);       QWebView *p_WebView = new QWebView(NULL);     printf("c1");         p_WebView->load(QUrl("www.google.de"));     printf("c2");       p_WebView->show();       printf("c3");       return 0; In debug it works, but in release it crashes before c2 is printed, such that I fear the problem is during “load(…)”. I use VS2012 and build qt by debug-and-release option, such that both debug and release libraries should have identical configuration. Do you have any idea, where (and how) I might start to search for the problem? regards, curtator

Viewing all articles
Browse latest Browse all 542

Trending Articles