summaryrefslogtreecommitdiff
path: root/src/editEntryForm.h
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/editEntryForm.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/editEntryForm.h')
-rw-r--r--src/editEntryForm.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/editEntryForm.h b/src/editEntryForm.h
deleted file mode 100644
index 6231478..0000000
--- a/src/editEntryForm.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef EDITENTRYFORM_H
-#define EDITENTRYFORM_H
-
-#include <QDialog>
-
-#include "entry.h"
-#include "ui_entryForm.h"
-
-// form to edit/update an entry
-class EditEntryForm : public QDialog {
- Q_OBJECT
-
- public:
- EditEntryForm(const Entry &e);
-
- private:
- Ui::entryDialog ui;
-
- Entry entry;
-
- private slots:
- void accept();
-};
-
-#endif