Hi,
I'm facing problems with downloading some WWW page.
Qt Code:
  1. int main(int argc, char *argv[])
  2. { QApplication app(argc, argv);
  3. setProxy();
  4.  
  5. QWebView view;
  6. QWebPage stWebPage;
  7. view.setPage(&stWebPage);
  8.  
  9. QWebSettings::globalSettings()->setAttribute(QWebSettings::AutoLoadImages,false);
  10. //stWebPage.mainFrame()->load(QUrl("http://www.google.pl/"));
  11. //stWebPage.mainFrame()->load(QUrl("http://doc.qt.nokia.com/4.7-snapshot/qmainwindow.html#public-slots"));
  12. stWebPage.mainFrame()->load(QUrl("http://www.proline.pl/?p=AMD+X4+II+965+AM3+B"));
  13. view.show();
  14. return app.exec();
  15. }
To copy to clipboard, switch view to plain text mode 

Works fine with two first links, so its not Network related errors. Its rather site fault.
If I download WWW page code with QNetworkAccessManager.get() - its look ok. But after setting it into QWebFrame - view is incorrect. I mean, only left side of page is somehow visible.
So still, problem is with page code (or some JavaScript test against web crawlers).
Any idea why? I need to download page and parse it to extract some data.