Hi,
I am trying to use this code as suggested by wiki, but I am getting blank view both in the emulator and on the device. Any idea?
Thanks
Code:int main(int argc, char *argv[]) { QApplication a(argc, argv); QWebView view; view.setStyleSheet("background-color:rgb(150,147,88); padding: 7px ; color:rgb(255,255,255)"); view.load(QUrl("http://www.google.com")); view.showMaximized(); return a.exec(); }




