diff options
author | Kai Koehne <[email protected]> | 2014-08-29 14:00:18 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2014-09-04 14:50:00 +0200 |
commit | e2584f69d446a846fa712081322f2988ac3d5bc8 (patch) | |
tree | 9f601f99959b71384890beaf361844afcd7486cc /src/plugins/debugger/shared | |
parent | d4a7505a181d0147b0151a18eca266ed35e26c4e (diff) |
Replace QLatin1String("x") with QLatin1Char('x') where possible
Change-Id: I2f90c8ae7b5e968b9de882833f8661ab540a9232
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/shared')
-rw-r--r-- | src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp | 2 |
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; } |