From 4c2c8bc81df55ab2f0112d16bfd1a9d236b51e6d Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 15 Mar 2024 16:12:05 -0400 Subject: Load and apply rules to entries --- src/entryLayout.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/entryLayout.h') diff --git a/src/entryLayout.h b/src/entryLayout.h index 1a4146b..df19a18 100644 --- a/src/entryLayout.h +++ b/src/entryLayout.h @@ -7,6 +7,7 @@ #include #include "entry.h" +#include "rule.h" class EntryLayout : public QHBoxLayout { Q_OBJECT @@ -16,6 +17,9 @@ class EntryLayout : public QHBoxLayout { EntryLayout(const Entry &e); + private: + QList loadRules(); + private slots: void showContextMenu(); void editEntry(); -- cgit