Hi ,
I am trying to open a webpage using QWebView.
I have webkit.
my code is as follows....
#include<QWebView>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Ex w;
QWebView *view = new QWebView();
view->load(QUrl("http:///exfile.html/"));
view->show();
// w.showMaximized();
return a.exec();
}
It says QWebView cannot be opened..
do I need to include anything in .pro file....

Reply With Quote



