diff options
author | Leena Miettinen <riitta-leena.miettinen@digia.com> | 2012-10-01 10:14:11 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-10-01 15:08:01 +0200 |
commit | e06582731e937511e9ff9c1867491d6b7e1ef5fc (patch) | |
tree | d3b034d68fe98eb50288e243dd914a7c282db176 /src/plugins/debugger/sourcefileshandler.cpp | |
parent | a791fee251dbed7fcd7cde276a34de457e197441 (diff) | |
download | qt-creator-e06582731e937511e9ff9c1867491d6b7e1ef5fc.tar.gz |
UI text: fix capitalization for debugger strings
Change-Id: If70418319529f75e893f3d5b60cb7dfa6a739dca
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/sourcefileshandler.cpp')
-rw-r--r-- | src/plugins/debugger/sourcefileshandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/sourcefileshandler.cpp b/src/plugins/debugger/sourcefileshandler.cpp index 45f1c856e7..ccabeb677e 100644 --- a/src/plugins/debugger/sourcefileshandler.cpp +++ b/src/plugins/debugger/sourcefileshandler.cpp @@ -59,8 +59,8 @@ QVariant SourceFilesHandler::headerData(int section, { if (orientation == Qt::Horizontal && role == Qt::DisplayRole) { static QString headers[] = { - tr("Internal name") + QLatin1String(" "), - tr("Full name") + QLatin1String(" "), + tr("Internal Name") + QLatin1String(" "), + tr("Full Name") + QLatin1String(" "), }; return headers[section]; } |