summaryrefslogtreecommitdiff
path: root/src/edit_group_form.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-09 17:34:04 -0500
committerLouie S <louie@example.com>2024-03-09 17:34:04 -0500
commitfc00cab0368a6f76a2b1f276f3a3d8573b1fba82 (patch)
tree655bd8a5df5d41f864fff0dac995e48b2fe06856 /src/edit_group_form.h
parent10b83b465509d864d6946ef30f31ec0356fc78ff (diff)
Standardize source file names
Diffstat (limited to 'src/edit_group_form.h')
-rw-r--r--src/edit_group_form.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/edit_group_form.h b/src/edit_group_form.h
deleted file mode 100644
index 9b0112c..0000000
--- a/src/edit_group_form.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef EDITGROUPFORM_H
-#define EDITGROUPFORM_H
-
-#include <QDialog>
-
-#include "group.h"
-#include "ui_group_form.h"
-
-// form to edit/update a group
-class EditGroupForm : public QDialog {
- Q_OBJECT
-
- public:
- EditGroupForm(const Group &g);
-
- private:
- Ui::groupDialog ui;
-
- Group group;
-
- private slots:
- void accept();
-};
-
-#endif