summaryrefslogtreecommitdiff
path: root/src/plugins/qtsupport/exampleslistmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qtsupport/exampleslistmodel.h')
-rw-r--r--src/plugins/qtsupport/exampleslistmodel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qtsupport/exampleslistmodel.h b/src/plugins/qtsupport/exampleslistmodel.h
index 2c9fad97b7..12db413af3 100644
--- a/src/plugins/qtsupport/exampleslistmodel.h
+++ b/src/plugins/qtsupport/exampleslistmodel.h
@@ -42,7 +42,7 @@ namespace QtSupport {
namespace Internal {
enum ExampleRoles { Name=Qt::UserRole, ProjectPath, Description, ImageUrl,
- DocUrl, FilesToOpen, Tags, Difficulty, HasSourceCode, Type };
+ DocUrl, FilesToOpen, Tags, Difficulty, HasSourceCode, Type, Dependencies };
enum InstructionalType { Example=0, Demo, Tutorial };
@@ -56,6 +56,7 @@ struct ExampleItem {
QString docUrl;
QStringList filesToOpen;
QStringList tags;
+ QStringList dependencies;
int difficulty;
bool hasSourceCode;
};