PDA

View Full Version : QTQtWebKit4.dll Application Crashses



hpfe455
2nd March 2012, 19:45
My application crashes while clicking on the trayIcon bubble notification. The bubble notification should display a web page, The tool kit version is 4.6.3.

WebSettingsHelper().AssignDefaultSettings();
QWebView* web= new QWebView();
web->setAttribute(Qt::WA_DeleteOnClose, true);
web->setWindowTitle(url);
web->setGeometry(20,20,1000,800);
web->load(QUrl::fromUserInput(url));
web->show();

In the development it never crashes. We have a separate build and test machines. And in the test machines, application always crashes. The same build is not crashing in the development machine whicha has QT 4.7 sdk installed. But in the build machine QT version is 4.6

ChrisW67
3rd March 2012, 01:44
My money is on missing libraries in the deployed environment. No more information to go on.