summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Boddie <dboddie@trolltech.com>2010-08-04 14:32:00 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2010-09-01 05:40:13 (GMT)
commit465c2b01eba4c8a1b09be4d8d7661d76e4cf5426 (patch)
tree582e8fc88643cf14adc7a75b42fee33c979f4c33
parent2562f8e0b2919e295acefad50eeefa9e9acfb02b (diff)
downloadQt-465c2b01eba4c8a1b09be4d8d7661d76e4cf5426.zip
Qt-465c2b01eba4c8a1b09be4d8d7661d76e4cf5426.tar.gz
Qt-465c2b01eba4c8a1b09be4d8d7661d76e4cf5426.tar.bz2
Doc: Fixed typo in a shortcut string.
Reviewed-by: Trust Me Task-number: QTBUG-12355 (cherry picked from commit 3378fe13f8d865463c79f34017a1d82e03cdf147)
-rw-r--r--examples/phonon/qmusicplayer/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/phonon/qmusicplayer/mainwindow.cpp b/examples/phonon/qmusicplayer/mainwindow.cpp
index 4778138..0e8e780 100644
--- a/examples/phonon/qmusicplayer/mainwindow.cpp
+++ b/examples/phonon/qmusicplayer/mainwindow.cpp
@@ -248,7 +248,7 @@ void MainWindow::aboutToFinish()
void MainWindow::setupActions()
{
playAction = new QAction(style()->standardIcon(QStyle::SP_MediaPlay), tr("Play"), this);
- playAction->setShortcut(tr("Crl+P"));
+ playAction->setShortcut(tr("Ctrl+P"));
playAction->setDisabled(true);
pauseAction = new QAction(style()->standardIcon(QStyle::SP_MediaPause), tr("Pause"), this);
pauseAction->setShortcut(tr("Ctrl+A"));