Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
With respect to this question:
[url]http://stackoverflow.com/questions/5765077/qtwebkit-loadfinished-and-loadprogress-slots-are-never-executed/5765594[/url]
The connect call as: @QObject.connect(web, SIGNAL("loadFinished()"), xprinter.print_page_info)@ doesn't work.
But in the answer provided: @web.loadFinished.connect(xprinter.print_page_info)@ This works fine.
Please tell why.
It is more likely that the problem was in the incorrect signature than in the fact that it doesn't work. QWebKit::loadFinished has a bool as argument as stated in the edited post.
Thanks its working now :)