aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared
diff options
context:
space:
mode:
authorFawzi Mohamed <fawzi.mohamed@digia.com>2013-03-19 19:12:57 +0100
committerFawzi Mohamed <fawzi.mohamed@digia.com>2013-03-20 10:39:45 +0100
commitef215c58f2393bb43683fd44a5b1613410251714 (patch)
tree689cb9d72d791c47bf4ae651d6439c6674789414 /src/app/shared
parent27786bfef9ce56738ab337e2fafcfe15e2f97c9f (diff)
consolelogger: abide no_acsii_conversion
Change-Id: I327090cbac40b58d280c5a23b82d0a477f0a1f26 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/app/shared')
-rw-r--r--src/app/shared/logging/consolelogger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/shared/logging/consolelogger.cpp b/src/app/shared/logging/consolelogger.cpp
index c365e0a2e..67ee0b82a 100644
--- a/src/app/shared/logging/consolelogger.cpp
+++ b/src/app/shared/logging/consolelogger.cpp
@@ -37,10 +37,10 @@
static QHash<QString, TextColor> setupColorTable()
{
QHash<QString, TextColor> colorTable;
- colorTable["compiler"] = TextColorDefault;
- colorTable["linker"] = TextColorDarkGreen;
- colorTable["codegen"] = TextColorDarkYellow;
- colorTable["filegen"] = TextColorDarkYellow;
+ colorTable[QLatin1String("compiler")] = TextColorDefault;
+ colorTable[QLatin1String("linker")] = TextColorDarkGreen;
+ colorTable[QLatin1String("codegen")] = TextColorDarkYellow;
+ colorTable[QLatin1String("filegen")] = TextColorDarkYellow;
return colorTable;
}