Hi, I am developing a Qt Web Kit application to run on Raspberry Pi 2. When I run the application on Ubuntu 14.04 on desktop it runs as expected. However when I run it on my Raspberry only blank page is shown. I also tried setting other HTML pages in QWebView, but that also ended in blank page on Raspberry. I tried local HTMLs, ones from the internet and I even tried seting HTML for QWebView myself from code. Sometimes, and I don't know why, depending on QString I set as HTML i get "$66" written in top left corner of the screen. It just doesn't make sens tome. At the end of the thread are functions which I use to set web kit and web view. Is the problem maybe that I need to set some other parameters of MainWindow, which is inherited from QWebView? In my HTML I have a lot of images, that is all there is. I thought that was the problem, but simple HTMLs and some like google don't work to, so I ruled out that problem.

Qt Code:
  1. void MainWindow::initializeWebKit()
  2. {
  3. _network = new QNetworkAccessManager(this);
  4. _cache = new QNetworkDiskCache(this);
  5. _cache->setCacheDirectory(CACHE_DIRECTORY);
  6. _cache->setMaximumCacheSize(CACHE_SIZE);
  7. _network->setCache(_cache);
  8. page()->setNetworkAccessManager(_network);
  9. }
  10.  
  11. void MainWindow::initializeFrontend()
  12. {
  13. QUrl startURL = QUrl("qrc:/Web/Roulette.html");
  14. setUrl(startURL);
  15. }
To copy to clipboard, switch view to plain text mode