summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/moduleshandler.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-12-21 14:02:52 +0100
committerhjk <qthjk@ovi.com>2011-12-21 14:07:12 +0100
commita92e38f47f7c54a0844e98e47d3a0f830b1c4c93 (patch)
tree31293326939661f77c3ba4b816fef109378afbb2 /src/plugins/debugger/moduleshandler.cpp
parentec4939005269cb62809668f89559e2dc582d8b38 (diff)
downloadqt-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/moduleshandler.cpp')
-rw-r--r--src/plugins/debugger/moduleshandler.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/debugger/moduleshandler.cpp b/src/plugins/debugger/moduleshandler.cpp
index 704ef2ef72..642f7cdd8c 100644
--- a/src/plugins/debugger/moduleshandler.cpp
+++ b/src/plugins/debugger/moduleshandler.cpp
@@ -56,12 +56,12 @@ QVariant ModulesModel::headerData(int section,
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
static QString headers[] = {
- tr("Module name") + " ",
- tr("Module path") + " ",
- tr("Symbols read") + " ",
- tr("Symbols type") + " ",
- tr("Start address") + " ",
- tr("End address") + " "
+ tr("Module name") + QLatin1String(" "),
+ tr("Module path") + QLatin1String(" "),
+ tr("Symbols read") + QLatin1String(" "),
+ tr("Symbols type") + QLatin1String(" "),
+ tr("Start address") + QLatin1String(" "),
+ tr("End address") + QLatin1String(" ")
};
return headers[section];
}