aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r--src/ruleparser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h
index 9525f14..2e0904e 100644
--- a/src/ruleparser.h
+++ b/src/ruleparser.h
@@ -47,6 +47,7 @@ public:
int minRevision;
int maxRevision;
int lineNumber;
+ bool annotate;
enum Action {
Ignore,
@@ -54,7 +55,7 @@ public:
Recurse
} action;
- Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }
+ Match() : minRevision(-1), maxRevision(-1), lineNumber(0), annotate(false), action(Ignore) { }
};
Rules(const QString &filename);