Update of /cvsroot/libwpg/perfectspot/src
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv17396
Modified Files:
mainwindow.cpp
Log Message:
left and right arrow to rotate
Index: mainwindow.cpp
===================================================================
RCS file: /cvsroot/libwpg/perfectspot/src/mainwindow.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- mainwindow.cpp 5 Oct 2007 09:30:55 -0000 1.21
+++ mainwindow.cpp 11 Oct 2007 09:16:57 -0000 1.22
@@ -145,8 +145,8 @@
d->quitAction->setShortcut(QKeySequence(tr("Ctrl+Q")));
d->zoomInAction->setShortcut(QKeySequence(tr("+")));
d->zoomOutAction->setShortcut(QKeySequence(tr("-")));
- d->rotateLeftAction->setShortcut(QKeySequence(tr("L")));
- d->rotateRightAction->setShortcut(QKeySequence(tr("R")));
+ d->rotateLeftAction->setShortcut(QKeySequence(Qt::Key_Left));
+ d->rotateRightAction->setShortcut(QKeySequence(Qt::Key_Right));
d->zoomLabel = new QLabel(statusBar());
d->zoomLabel->setMargin(2);
|