aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/transformer.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-01-16 14:27:36 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-01-16 15:03:59 +0100
commit576e79c024fe697dd923947484a92e26385e7679 (patch)
tree3795888c69734c41bd6700515b3b4723e8a9639e /src/lib/corelib/buildgraph/transformer.h
parentb01663e6fc3d3df62951ad54d29668a0a06f307e (diff)
rename ArtifactList to ArtifactSet
Now the name reflects reality. Change-Id: I3997b99de86819c973434240103d25d6915d838b Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/lib/corelib/buildgraph/transformer.h')
-rw-r--r--src/lib/corelib/buildgraph/transformer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/corelib/buildgraph/transformer.h b/src/lib/corelib/buildgraph/transformer.h
index b6ef09561..3ef30cc29 100644
--- a/src/lib/corelib/buildgraph/transformer.h
+++ b/src/lib/corelib/buildgraph/transformer.h
@@ -30,7 +30,7 @@
#ifndef QBS_TRANSFORMER_H
#define QBS_TRANSFORMER_H
-#include "artifactlist.h"
+#include "artifactset.h"
#include "forward_decls.h"
#include <language/forward_decls.h>
#include <language/property.h>
@@ -53,8 +53,8 @@ public:
~Transformer();
- ArtifactList inputs; // Subset of "children of all outputs".
- ArtifactList outputs;
+ ArtifactSet inputs; // Subset of "children of all outputs".
+ ArtifactSet outputs;
RuleConstPtr rule;
QList<AbstractCommand *> commands;
PropertyList propertiesRequestedInPrepareScript;
@@ -65,7 +65,7 @@ public:
Artifact *artifact,
const QString &defaultModuleName);
static QScriptValue translateInOutputs(QScriptEngine *scriptEngine,
- const ArtifactList &artifacts,
+ const ArtifactSet &artifacts,
const QString &defaultModuleName);
ResolvedProductPtr product() const;