I'm trying to open a html help file with QDesktopServices:penUrl. The html file contains references to jpgs held in a lower directory. The top page displays correctly, but without the images from the image directory.
A couple of things this is not: The images have been checked and are correctly installed in the image director. Also, the image references in the html file are relative, not absolute.
Any ideas?
QUrl url(OpGlobals::dataFileName("help.html"), QUrl::TolerantMode);
url.setScheme("file");
if (QDesktopServices:: openUrl(url))
etc etc...

penUrl. The html file contains references to jpgs held in a lower directory. The top page displays correctly, but without the images from the image directory.


