Hi all,

I try to display webpage with QWebView,but there is nothing on window, it display blank.

I using QT/Embedded 4.4.3, here is my test codes:

int main(int argc, char * argv[])
{
QApplication app(argc, argv);

QWebView *view = new QWebView;
view->load(QUrl("http://www.google.com"));
view->show();
return app.exec();
}

Thanks for reply.