Hi,

I'm trying to build a browser app, just to test Qt. this is my program so far:

Qt Code:
  1. #include <QApplication>
  2. #include <QtWebKit/QWebView>
  3.  
  4. int main(int argc, char **argv)
  5. {
  6. QApplication app(argc, argv);
  7. QWebView *view = new QWebView();
  8.  
  9. view->load(QUrl("http://www.yahoo.com"));
  10. view->show();
  11.  
  12. return app.exec();
  13. }
To copy to clipboard, switch view to plain text mode 

all I get is a undefined reference to `QWebView::QWebView(QWidget*)'

what am I doing wrong?

thanks