summaryrefslogtreecommitdiff
path: root/src/rule.cpp
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-23 20:37:48 -0400
committerLouie S <louie@example.com>2024-07-23 20:37:48 -0400
commitc34930425fadfc4083067b9306159cd8e8ecf6c6 (patch)
treed9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/rule.cpp
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/rule.cpp')
-rw-r--r--src/rule.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/rule.cpp b/src/rule.cpp
deleted file mode 100644
index 85da13a..0000000
--- a/src/rule.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <QList>
-
-#include "rule.h"
-
-Rule::Rule(int id, int entry_id, When when, QDateTime date, QString color, QString highlight) :
- id(id),
- entry_id(entry_id),
- when(when),
- date(date),
- color(color),
- highlight(highlight)
-{
-}
-
-QList<Rule> Rule::rules;