aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--typesystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/typesystem.cpp b/typesystem.cpp
index 736627bf4..93e81eaa9 100644
--- a/typesystem.cpp
+++ b/typesystem.cpp
@@ -1394,9 +1394,9 @@ bool Handler::startElement(const QString &, const QString &n,
static QHash<QString, ReferenceCount::Action> actions;
if (actions.isEmpty()) {
actions["add"] = ReferenceCount::Add;
- //actions["add-all"] = ReferenceCount::AddAll;
+ actions["add-all"] = ReferenceCount::AddAll;
actions["remove"] = ReferenceCount::Remove;
- //actions["set"] = ReferenceCount::Set;
+ actions["set"] = ReferenceCount::Set;
actions["ignore"] = ReferenceCount::Ignore;
}
rc.action = actions.value(attributes["action"].toLower(), ReferenceCount::Invalid);