summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@digia.com>2014-07-14 12:17:38 +0200
committerLeena Miettinen <riitta-leena.miettinen@digia.com>2014-07-14 13:35:15 +0200
commit67f32ea16e40d7bcfadda746da497c96fa1919f6 (patch)
treea41fa7a5136f2162cf7de65eff2b4768cbbccd68 /src/plugins/projectexplorer
parent0fc20de475c4d54fb234ca3513cc81cbc69d333f (diff)
downloadqt-creator-67f32ea16e40d7bcfadda746da497c96fa1919f6.tar.gz
UI text: capitalize "Open With"
Because the preposition is the last word in the function or title. Change-Id: I3648f5723eaf63faef097ea80f30a4576136a4e8 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/foldernavigationwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/foldernavigationwidget.cpp b/src/plugins/projectexplorer/foldernavigationwidget.cpp
index 2f6dd7a9d9..07340cd8c1 100644
--- a/src/plugins/projectexplorer/foldernavigationwidget.cpp
+++ b/src/plugins/projectexplorer/foldernavigationwidget.cpp
@@ -343,7 +343,7 @@ void FolderNavigationWidget::contextMenuEvent(QContextMenuEvent *ev)
actionFind->setEnabled(hasCurrentItem);
// open with...
if (hasCurrentItem && !isDirectory) {
- QMenu *openWith = menu.addMenu(tr("Open with"));
+ QMenu *openWith = menu.addMenu(tr("Open With"));
Core::DocumentManager::populateOpenWithMenu(openWith,
m_fileSystemModel->filePath(current));
}