I have a compiled qt embedded 4.6.2 .for arm successfully and try to run simple browser:
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. QWebView *view = new QWebView();
  5.  
  6. view->load(QUrl("/home/index.html"));
  7. view->showFullScreen();
  8.  
  9. return a.exec();
  10. }
To copy to clipboard, switch view to plain text mode 

I have a problem with displaying some of the unicode characters in webpages. I'm from Slovakia and we have some special characters. In my case e.g. character ľ isn't display correctly (just blank space instead). I compile qt with unicode font but it doesn't help. How can I make my web browser display correctly webpages?

Thanks,

Marek