In the following application:

Qt Code:
  1. #include <QApplication>
  2. #include <QHBoxLayout>
  3. #include <QWebView>
  4.  
  5. int main(int argc, char* argv[])
  6. {
  7. QApplication app(argc, argv);
  8. QWidget *window = new QWidget();
  9.  
  10. window->setLayout(new QHBoxLayout());
  11. window->resize(800, 600);
  12. window->show();
  13.  
  14. QWebView *webView = new QWebView(window);
  15. window->layout()->addWidget(webView);
  16.  
  17. webView->load(QUrl("C:/test.html"));
  18.  
  19. return app.exec();
  20. }
To copy to clipboard, switch view to plain text mode 
where test.html is:

Qt Code:
  1. <html>
  2. <head></head>
  3. <body>
  4. <img src="file://///SERVER/path/image.png">
  5. <img src="file:///C:/test.png">
  6. </body>
  7. </html>
To copy to clipboard, switch view to plain text mode 

Qt 4.5.1 shows me nothing at all (Not even the "image missing" images).
Qt 4.7.1 show me the local file ("test.png"), but an "image missing" image for the file on the network share.

The html file loads fine with both images in Firefox, Chrome and IE.

What could be the problem here? Are the URLs correct? Could it be an issue with access rights? I'm really out of ideas, any help would be much appreciated.

Thanks
Michael