diff options
author | hjk <[email protected]> | 2014-08-23 01:19:53 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2014-08-25 08:21:14 +0200 |
commit | 6431ab2c799553623ec3fe6a79f1e85484558dd6 (patch) | |
tree | e82f7812bb38906d75bc41109336206fa09eff9d /src/plugins/debugger/debuggerplugin.cpp | |
parent | 2b5df11cb8f6e8d40d86728e8b788aff3a755907 (diff) |
Use Qt 5's QStringList::join(QChar)
Less typing and less cycles than join(QString) where appropriate
Change-Id: I6ebc0e17e4d7fd9845864dd95b7de4ba4dad6906
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 08f28671cdb..77531a3ff52 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2640,7 +2640,7 @@ static QString formatStartParameters(DebuggerStartParameters &sp) << " Local: " << sp.localMountDir << '\n'; } str << "Sysroot: " << sp.sysRoot << '\n'; - str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1String(":")) << '\n'; + str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1Char(':')) << '\n'; return rc; } |