summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/selectablefilesmodel.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@digia.com>2014-08-29 14:00:18 +0200
committerhjk <hjk121@nokiamail.com>2014-09-04 14:50:00 +0200
commite2584f69d446a846fa712081322f2988ac3d5bc8 (patch)
tree9f601f99959b71384890beaf361844afcd7486cc /src/plugins/projectexplorer/selectablefilesmodel.cpp
parentd4a7505a181d0147b0151a18eca266ed35e26c4e (diff)
downloadqt-creator-e2584f69d446a846fa712081322f2988ac3d5bc8.tar.gz
Replace QLatin1String("x") with QLatin1Char('x') where possible
Change-Id: I2f90c8ae7b5e968b9de882833f8661ab540a9232 Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/projectexplorer/selectablefilesmodel.cpp')
-rw-r--r--src/plugins/projectexplorer/selectablefilesmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/selectablefilesmodel.cpp b/src/plugins/projectexplorer/selectablefilesmodel.cpp
index 4d267e6810..c44d506d3d 100644
--- a/src/plugins/projectexplorer/selectablefilesmodel.cpp
+++ b/src/plugins/projectexplorer/selectablefilesmodel.cpp
@@ -75,7 +75,7 @@ void SelectableFilesModel::startParsing(const QString &baseDir)
m_baseDir = baseDir;
// Build a tree in a future
m_rootForFuture = new Tree;
- m_rootForFuture->name = QLatin1String("/");
+ m_rootForFuture->name = QLatin1Char('/');
m_rootForFuture->parent = 0;
m_rootForFuture->fullPath = baseDir;
m_rootForFuture->isDir = true;