Changeset 49953 in webkit


Ignore:
Timestamp:
Oct 22, 2009 1:10:05 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-10-22 Girish Ramakrishnan <Girish Ramakrishnan>

Reviewed by Eric Seidel.

[Qt] Add Print Shortcut to QtLauncher

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

  • QtLauncher/main.cpp: (MainWindow::setupUI):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r49943 r49953  
     12009-10-22  Girish Ramakrishnan  <girish@forwardbias.in>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] Add Print Shortcut to QtLauncher
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=30682
     8
     9        * QtLauncher/main.cpp:
     10        (MainWindow::setupUI):
     11
    1122009-10-22  Antonio Gomes  <tonikitoo@webkit.org>
    213
  • trunk/WebKit/qt/QtLauncher/main.cpp

    r49851 r49953  
    304304        QAction *newWindow = fileMenu->addAction("New Window", this, SLOT(newWindow()));
    305305#if QT_VERSION >= 0x040400
    306         fileMenu->addAction(tr("Print"), this, SLOT(print()));
     306        fileMenu->addAction(tr("Print"), this, SLOT(print()), QKeySequence::Print);
    307307#endif
    308308        QAction* screenshot = fileMenu->addAction("Screenshot", this, SLOT(screenshot()));
Note: See TracChangeset for help on using the changeset viewer.