[Webkit-unassigned] [Bug 26584] [Qt] Printing extra information

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 9 00:13:59 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=26584





--- Comment #22 from Jakob Truelsen <antialize at gmail.com>  2009-09-09 00:13:59 PDT ---
I have made a patch allowing one to do

frame->beginPrint(myPrinter);
int pageCount = frame->printingPageCount(myPrinter)
for (int i = 1; i < pageCount; ++i)
  frame->spoolPage(i);
frame->endPrint();

note that moving the pageCount inside the begin and end.. it can be made an
O(1) operation and then it makes sence calling it printingPageCount instead of
computePageCount.

I will submit the patch once I get it testet probberly, and within the style
guidelines..

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list