Changeset 55610 in webkit


Ignore:
Timestamp:
Mar 5, 2010 7:48:36 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-05 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>

Reviewed by Eric Seidel.

Fix Print option on QtLauncher by calling print directly from QWebFrame.

[Qt] QtLauncher Print option is not working on QGraphicsView mode
https://bugs.webkit.org/show_bug.cgi?id=35769

  • QtLauncher/main.cpp: (LauncherWindow::print):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r55603 r55610  
     12010-03-05  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix Print option on QtLauncher by calling print directly from QWebFrame.
     6
     7        [Qt] QtLauncher Print option is not working on QGraphicsView mode
     8        https://bugs.webkit.org/show_bug.cgi?id=35769
     9
     10        * QtLauncher/main.cpp:
     11        (LauncherWindow::print):
     12
    1132010-03-05  Chris Jerdonek  <cjerdonek@webkit.org>
    214
  • trunk/WebKitTools/QtLauncher/main.cpp

    r55581 r55610  
    432432    QPrintPreviewDialog dlg(this);
    433433    connect(&dlg, SIGNAL(paintRequested(QPrinter*)),
    434             m_view, SLOT(print(QPrinter*)));
     434            page()->mainFrame(), SLOT(print(QPrinter*)));
    435435    dlg.exec();
    436436#endif
Note: See TracChangeset for help on using the changeset viewer.