diff options
author | Leena Miettinen <riitta-leena.miettinen@nokia.com> | 2010-05-14 15:45:43 +0200 |
---|---|---|
committer | Leena Miettinen <riitta-leena.miettinen@nokia.com> | 2010-05-14 15:53:56 +0200 |
commit | cf233161fa364fe1428230e926dfd8998a6155fd (patch) | |
tree | 6719a20ad4781f04fa9fab16b81f7fc129782d73 /src/plugins/bookmarks | |
parent | cf250f26c1224e13424b0cb1d7f5bfe9b7577e33 (diff) | |
download | qt-creator-cf233161fa364fe1428230e926dfd8998a6155fd.tar.gz |
Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.
Reviewed-by: ossi
Diffstat (limited to 'src/plugins/bookmarks')
-rw-r--r-- | src/plugins/bookmarks/bookmarksplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/bookmarks/bookmarksplugin.cpp b/src/plugins/bookmarks/bookmarksplugin.cpp index 15eb13a8c1..3f5ef3f6c0 100644 --- a/src/plugins/bookmarks/bookmarksplugin.cpp +++ b/src/plugins/bookmarks/bookmarksplugin.cpp @@ -126,12 +126,12 @@ bool BookmarksPlugin::initialize(const QStringList & /*arguments*/, QString *) mbm->addAction(cmd); //Previous Doc - m_docPrevAction = new QAction(tr("Previous Bookmark In Document"), this); + m_docPrevAction = new QAction(tr("Previous Bookmark in Document"), this); cmd = am->registerAction(m_docPrevAction, BOOKMARKS_PREVDOC_ACTION, globalcontext); mbm->addAction(cmd); //Next Doc - m_docNextAction = new QAction(tr("Next Bookmark In Document"), this); + m_docNextAction = new QAction(tr("Next Bookmark in Document"), this); cmd = am->registerAction(m_docNextAction, BOOKMARKS_NEXTDOC_ACTION, globalcontext); mbm->addAction(cmd); |