aboutsummaryrefslogtreecommitdiffstats
path: root/gpgwin.cpp
diff options
context:
space:
mode:
authorubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2010-06-19 21:39:53 +0000
committerubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910>2010-06-19 21:39:53 +0000
commit63cf766e7cb7d3d5bca058e3cda8e683a4a50eb4 (patch)
tree67b25e7c6512324a43a3119defe23079b622ecf5 /gpgwin.cpp
parentadded redo to edit-menu (diff)
downloadgpg4usb-63cf766e7cb7d3d5bca058e3cda8e683a4a50eb4.tar.gz
gpg4usb-63cf766e7cb7d3d5bca058e3cda8e683a4a50eb4.zip
redo to redo-action
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@360 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgwin.cpp')
-rw-r--r--gpgwin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index 6c0a5d4..22dbe89 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -159,9 +159,9 @@ void GpgWin::createActions()
undoAct->setToolTip(tr("Undo Last Edit Action"));
connect(undoAct, SIGNAL(triggered()), edit, SLOT(undo()));
- undoAct = new QAction(tr("&Redo"), this);
- undoAct->setShortcut(QKeySequence::Redo);
- undoAct->setToolTip(tr("Redo Last Edit Action"));
+ redoAct = new QAction(tr("&Redo"), this);
+ redoAct->setShortcut(QKeySequence::Redo);
+ redoAct->setToolTip(tr("Redo Last Edit Action"));
connect(redoAct, SIGNAL(triggered()), edit, SLOT(redo()));
pasteAct = new QAction(tr("&Paste"), this);