aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp')
-rw-r--r--src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp b/src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp
index b87693bce..adb5925b2 100644
--- a/src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp
+++ b/src/plugins/generator/iarew/iarewsourcefilespropertygroup.cpp
@@ -28,7 +28,6 @@
**
****************************************************************************/
-#include "iarewproperty.h"
#include "iarewsourcefilepropertygroup.h"
#include "iarewsourcefilespropertygroup.h"
@@ -42,14 +41,16 @@ IarewSourceFilesPropertyGroup::IarewSourceFilesPropertyGroup(
const GeneratableProject &genProject,
const QString &filesGroupName,
const QList<ArtifactData> &sourceFiles)
- : IarewPropertyGroup(QByteArrayLiteral("group"))
+ : gen::xml::PropertyGroup(QByteArrayLiteral("group"))
{
// Create group name property item.
- appendChild<IarewProperty>(QByteArrayLiteral("name"), filesGroupName);
+ appendChild<gen::xml::Property>(QByteArrayLiteral("name"),
+ filesGroupName);
// Create file paths property items.
for (const auto &sourceFile : sourceFiles)
- appendChild<IarewSourceFilePropertyGroup>(genProject, sourceFile);
+ appendChild<IarewSourceFilePropertyGroup>(genProject,
+ sourceFile);
}
} // namespace qbs