summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-10-22 17:15:05 +0200
committerLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-10-23 08:06:27 +0000
commit8eebcaa5f10f781127feaee4f631015534650e03 (patch)
tree97fb9317dd77a13cd358481e1ca63d18d0bc116e
parente195526d54c6361004ea886f12dced4b9537e73c (diff)
downloadqt-creator-8eebcaa5f10f781127feaee4f631015534650e03.tar.gz
Debugger: fix capitalization of button label
Change-Id: Ib83e8a8f858cb9c23752c63cb25202f69e164c30 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
-rw-r--r--src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
index 3a211a49ea..2e5f53d478 100644
--- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
+++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
@@ -135,7 +135,7 @@ CdbSymbolPathListEditor::CdbSymbolPathListEditor(QWidget *parent) :
});
button->setToolTip(tr("Uses a directory to cache symbols used by the debugger."));
- button = insertButton(lastInsertButtonIndex + 1, tr("Setup Symbol Paths..."), this, [this](){
+ button = insertButton(lastInsertButtonIndex + 1, tr("Set up Symbol Paths..."), this, [this](){
setupSymbolPaths();
});
button->setToolTip(tr("Configure Symbol paths that are used to locate debug symbol files."));