UI text: fix capitalization for debugger strings

Change-Id: If70418319529f75e893f3d5b60cb7dfa6a739dca
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Leena Miettinen
2012-10-01 10:14:11 +02:00
committed by hjk
parent a791fee251
commit e06582731e
4 changed files with 20 additions and 20 deletions

View File

@@ -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];
}