VCS: Capitalize change context-menu actions

Change-Id: I52f109b2826a85de73de74d7395d04d82d0e55f5
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
Orgad Shaneh
2013-01-14 19:11:19 +02:00
committed by Orgad Shaneh
parent 9ebb740fa7
commit 262b5b12c1
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ GitEditor::GitEditor(const VcsBase::VcsBaseEditorParameters *type,
QTC_ASSERT(m_changeNumberPattern8.isValid(), return); QTC_ASSERT(m_changeNumberPattern8.isValid(), return);
QTC_ASSERT(m_changeNumberPattern40.isValid(), return); QTC_ASSERT(m_changeNumberPattern40.isValid(), return);
setAnnotateRevisionTextFormat(tr("Blame %1")); setAnnotateRevisionTextFormat(tr("Blame %1"));
setAnnotatePreviousRevisionTextFormat(tr("Blame parent revision %1")); setAnnotatePreviousRevisionTextFormat(tr("Blame Parent Revision %1"));
} }
QSet<QString> GitEditor::annotationChanges() const QSet<QString> GitEditor::annotationChanges() const

View File

@@ -384,7 +384,7 @@ void ChangeTextCursorHandler::slotCopyRevision()
QAction *ChangeTextCursorHandler::createDescribeAction(const QString &change) const QAction *ChangeTextCursorHandler::createDescribeAction(const QString &change) const
{ {
QAction *a = new QAction(VcsBaseEditorWidget::tr("Describe change %1").arg(change), 0); QAction *a = new QAction(VcsBaseEditorWidget::tr("Describe Change %1").arg(change), 0);
connect(a, SIGNAL(triggered()), this, SLOT(slotDescribe())); connect(a, SIGNAL(triggered()), this, SLOT(slotDescribe()));
return a; return a;
} }