diff options
author | Louie S <louie@example.com> | 2024-03-15 15:41:31 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-03-15 15:41:31 -0400 |
commit | d732bd0f74225828455c5863444b0211faf586d0 (patch) | |
tree | 4c605e694cc02521c9fddb05a710c62d66a97e55 /src/rulesDialog.h | |
parent | 3e1d2e46ceea202120b4ff814fbd872bc6fc60f3 (diff) |
Add backend for rules dialog
Diffstat (limited to 'src/rulesDialog.h')
-rw-r--r-- | src/rulesDialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rulesDialog.h b/src/rulesDialog.h index 8f0fd81..25125fb 100644 --- a/src/rulesDialog.h +++ b/src/rulesDialog.h @@ -19,12 +19,14 @@ class RulesDialog : public QDialog { Ui::rulesDialog ui; int entry_id; QList<Rule *> rules; + QList<Rule> deleted_rules; void updateRulesList(); private slots: void addRule(); void deleteRule(int i); + void accept(); }; #endif |