diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-12-21 14:02:52 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2011-12-21 14:07:12 +0100 |
commit | a92e38f47f7c54a0844e98e47d3a0f830b1c4c93 (patch) | |
tree | 31293326939661f77c3ba4b816fef109378afbb2 /src/plugins/debugger/sourcefileshandler.cpp | |
parent | ec4939005269cb62809668f89559e2dc582d8b38 (diff) | |
download | qt-creator-a92e38f47f7c54a0844e98e47d3a0f830b1c4c93.tar.gz |
Debugger: Compile with QT_NO_CAST_FROM_ASCII.
(except gdbmi.cpp, name_demangler.cpp). Remove some unneeded
conversions, change some maps to take QByteArray keys.
Change-Id: I010f1251998a441fe5c8c87901b1e0c277c0391c
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 84699eacf0..5982952be2 100644 --- a/src/plugins/debugger/sourcefileshandler.cpp +++ b/src/plugins/debugger/sourcefileshandler.cpp @@ -61,8 +61,8 @@ QVariant SourceFilesHandler::headerData(int section, { if (orientation == Qt::Horizontal && role == Qt::DisplayRole) { static QString headers[] = { - tr("Internal name") + " ", - tr("Full name") + " ", + tr("Internal name") + QLatin1String(" "), + tr("Full name") + QLatin1String(" "), }; return headers[section]; } |