summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggeroutputwindow.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-02-12 10:52:09 +0100
committerhjk <qtc-committer@nokia.com>2010-02-12 10:53:25 +0100
commit04b4fcb6bd7b4c20ed11606281ec2bd1cd089917 (patch)
treee7b1eeb8b9d6336463aac79996c89be9e16385dc /src/plugins/debugger/debuggeroutputwindow.cpp
parent221fc011b8430ab79551818d5d72f4bde7f66984 (diff)
downloadqt-creator-04b4fcb6bd7b4c20ed11606281ec2bd1cd089917.tar.gz
debugger: change capitalization of context menu action texts to Book Style
Diffstat (limited to 'src/plugins/debugger/debuggeroutputwindow.cpp')
-rw-r--r--src/plugins/debugger/debuggeroutputwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggeroutputwindow.cpp b/src/plugins/debugger/debuggeroutputwindow.cpp
index 397d457882..11391dfc3f 100644
--- a/src/plugins/debugger/debuggeroutputwindow.cpp
+++ b/src/plugins/debugger/debuggeroutputwindow.cpp
@@ -177,13 +177,13 @@ public:
{
setMaximumBlockCount(100000);
m_clearContentsAction = new QAction(this);
- m_clearContentsAction->setText(tr("Clear contents"));
+ m_clearContentsAction->setText(tr("Clear Contents"));
m_clearContentsAction->setEnabled(true);
connect(m_clearContentsAction, SIGNAL(triggered(bool)),
parent, SLOT(clearContents()));
m_saveContentsAction = new QAction(this);
- m_saveContentsAction->setText(tr("Save contents"));
+ m_saveContentsAction->setText(tr("Save Contents"));
m_saveContentsAction->setEnabled(true);
}