diff options
author | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2013-02-15 15:14:22 +0100 |
---|---|---|
committer | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2013-02-15 15:20:37 +0100 |
commit | ccbadb2d37f44d0025e4474d05b2982403ee5447 (patch) | |
tree | 2c1e97fcefb47cd318c3016bc174691933b66d45 /src/plugins/cpptools/cpptoolsplugin.cpp | |
parent | 442f4769fcb05f384bd921f57d245b31b2668802 (diff) | |
download | qt-creator-ccbadb2d37f44d0025e4474d05b2982403ee5447.tar.gz |
UI text: fix caps in CPP plugin actions
Use book style capitalization, which means that
prepositions less than 4 characters long are written
in lower case.
Change-Id: I6d46a2513070897929cf1a8af2943a17d8e52b2d
Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsplugin.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolsplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsplugin.cpp b/src/plugins/cpptools/cpptoolsplugin.cpp index 05d604b29c..002b12120f 100644 --- a/src/plugins/cpptools/cpptoolsplugin.cpp +++ b/src/plugins/cpptools/cpptoolsplugin.cpp @@ -138,7 +138,7 @@ bool CppToolsPlugin::initialize(const QStringList &arguments, QString *error) mcpptools->addAction(command); connect(switchAction, SIGNAL(triggered()), this, SLOT(switchHeaderSource())); - QAction *openInNextSplitAction = new QAction(tr("Open corresponding Header/Source in Next Split"), this); + QAction *openInNextSplitAction = new QAction(tr("Open Corresponding Header/Source in Next Split"), this); command = Core::ActionManager::registerAction(openInNextSplitAction, Constants::OPEN_HEADER_SOURCE_IN_NEXT_SPLIT, context, true); command->setDefaultKeySequence(QKeySequence(Qt::CTRL + Qt::Key_E, Qt::Key_F4)); mcpptools->addAction(command); |