aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/shared
diff options
context:
space:
mode:
authorKai Koehne <[email protected]>2014-08-29 14:00:18 +0200
committerhjk <[email protected]>2014-09-04 14:50:00 +0200
commite2584f69d446a846fa712081322f2988ac3d5bc8 (patch)
tree9f601f99959b71384890beaf361844afcd7486cc /src/plugins/debugger/shared
parentd4a7505a181d0147b0151a18eca266ed35e26c4e (diff)
Replace QLatin1String("x") with QLatin1Char('x') where possible
Diffstat (limited to 'src/plugins/debugger/shared')
-rw-r--r--src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
index b648d53debb..255ebb6d923 100644
--- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
+++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp
@@ -162,7 +162,7 @@ QString CdbSymbolPathListEditor::symbolPath(const QString &cacheDir,
return QLatin1String(symbolCachePrefixC) + QDir::toNativeSeparators(cacheDir);
QString s = QLatin1String(symbolServerPrefixC);
if (!cacheDir.isEmpty())
- s += QDir::toNativeSeparators(cacheDir) + QLatin1String("*");
+ s += QDir::toNativeSeparators(cacheDir) + QLatin1Char('*');
s += QLatin1String(symbolServerPostfixC);
return s;
}