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/libs/qmljs/qmljsinterpreter.cpp | |
parent | d4a7505a181d0147b0151a18eca266ed35e26c4e (diff) |
Replace QLatin1String("x") with QLatin1Char('x') where possible
Change-Id: I2f90c8ae7b5e968b9de882833f8661ab540a9232
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/libs/qmljs/qmljsinterpreter.cpp')
-rw-r--r-- | src/libs/qmljs/qmljsinterpreter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/qmljs/qmljsinterpreter.cpp b/src/libs/qmljs/qmljsinterpreter.cpp index 26a9b2358fa..c2f51385ae0 100644 --- a/src/libs/qmljs/qmljsinterpreter.cpp +++ b/src/libs/qmljs/qmljsinterpreter.cpp @@ -200,25 +200,25 @@ QString PropertyInfo::toString() const } if (isWriteable()) { if (join) - res += QLatin1String("|"); + res += QLatin1Char('|'); res += QLatin1String("Writeable"); join = true; } if (isList()) { if (join) - res += QLatin1String("|"); + res += QLatin1Char('|'); res += QLatin1String("ListType"); join = true; } if (canBePointer()) { if (join) - res += QLatin1String("|"); + res += QLatin1Char('|'); res += QLatin1String("Pointer"); join = true; } if (canBeValue()) { if (join) - res += QLatin1String("|"); + res += QLatin1Char('|'); res += QLatin1String("Value"); join = true; } |