summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/abstractmsvctoolchain.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-07-09 11:34:37 +0200
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-07-13 12:20:20 +0000
commitc3192d908bf2d2575d93b49733b6dce9d6cca2bb (patch)
treec918e3a2041bde6529c0525d3965e8177756e9bd /src/plugins/projectexplorer/abstractmsvctoolchain.h
parent26eca3d15a535b2e2830d0a1120b4932430ca8b8 (diff)
downloadqt-creator-c3192d908bf2d2575d93b49733b6dce9d6cca2bb.tar.gz
ToolChain: Introduce typeId() and shorten id()
Split up the toolchain id() into a part that is unique per type of toolchain and call that typeId(). Leave the part that is unique per toolchain in id(). Add some mapping code for compatibility old settings. Change-Id: I770881b3274ac5224edc8165b484fec6b0d4d2c6 Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/abstractmsvctoolchain.h')
-rw-r--r--src/plugins/projectexplorer/abstractmsvctoolchain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/abstractmsvctoolchain.h b/src/plugins/projectexplorer/abstractmsvctoolchain.h
index 8797d69945..c7017b7a99 100644
--- a/src/plugins/projectexplorer/abstractmsvctoolchain.h
+++ b/src/plugins/projectexplorer/abstractmsvctoolchain.h
@@ -44,8 +44,8 @@ namespace Internal {
class PROJECTEXPLORER_EXPORT AbstractMsvcToolChain : public ToolChain
{
public:
- explicit AbstractMsvcToolChain(const QByteArray &id, Detection d, const Abi &abi, const QString& vcvarsBat);
- explicit AbstractMsvcToolChain(const QByteArray &id, Detection d);
+ explicit AbstractMsvcToolChain(Core::Id typeId, Detection d, const Abi &abi, const QString& vcvarsBat);
+ explicit AbstractMsvcToolChain(Core::Id typeId, Detection d);
Abi targetAbi() const override;