summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/qnxtoolchain.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-03 14:01:25 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-11-16 08:33:02 +0000
commitca29cbfc8a4cd2fad3556f0c98febc4692894265 (patch)
treec1ed043fa137e06d4004c123ee88b59dc6471c78 /src/plugins/qnx/qnxtoolchain.cpp
parent153d593b6328ba45f4e7ee46ff1ad1ce9e19b61e (diff)
downloadqt-creator-ca29cbfc8a4cd2fad3556f0c98febc4692894265.tar.gz
Consistently use Utils::FileNameList
Consistently use Utils::FileNameList in favor of QList<Utils::FileName> Change-Id: Iafbb466c882bfd91c25c9e78f107d401bfdb6d55 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'src/plugins/qnx/qnxtoolchain.cpp')
-rw-r--r--src/plugins/qnx/qnxtoolchain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qnx/qnxtoolchain.cpp b/src/plugins/qnx/qnxtoolchain.cpp
index eb126703c9..416716acef 100644
--- a/src/plugins/qnx/qnxtoolchain.cpp
+++ b/src/plugins/qnx/qnxtoolchain.cpp
@@ -86,9 +86,9 @@ void QnxToolChain::addToEnvironment(Utils::Environment &env) const
GccToolChain::addToEnvironment(env);
}
-QList<Utils::FileName> QnxToolChain::suggestedMkspecList() const
+Utils::FileNameList QnxToolChain::suggestedMkspecList() const
{
- QList<Utils::FileName> mkspecList;
+ Utils::FileNameList mkspecList;
mkspecList << Utils::FileName::fromLatin1("qnx-armv7le-qcc");
mkspecList << Utils::FileName::fromLatin1("qnx-armle-v7-qcc");
mkspecList << Utils::FileName::fromLatin1("qnx-x86-qcc");