With respect to this question:
http://stackoverflow.com/questions/5...ecuted/5765594
The connect call as:
QObject.
connect(web,
SIGNAL("loadFinished()"), xprinter.
print_page_info)
QObject.connect(web, SIGNAL("loadFinished()"), xprinter.print_page_info)
To copy to clipboard, switch view to plain text mode
doesn't work.
But in the answer provided:
web.loadFinished.connect(xprinter.print_page_info)
web.loadFinished.connect(xprinter.print_page_info)
To copy to clipboard, switch view to plain text mode
This works fine.
Please tell why?
Bookmarks