diff options
author | Louie S <louie@example.com> | 2024-07-23 20:37:48 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-07-23 20:37:48 -0400 |
commit | c34930425fadfc4083067b9306159cd8e8ecf6c6 (patch) | |
tree | d9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/editGroupForm.h | |
parent | f820f439910ef0243e6b9aded293190341b058ac (diff) |
Rearrange source file locations
Diffstat (limited to 'src/editGroupForm.h')
-rw-r--r-- | src/editGroupForm.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/editGroupForm.h b/src/editGroupForm.h deleted file mode 100644 index e04b46e..0000000 --- a/src/editGroupForm.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef EDITGROUPFORM_H -#define EDITGROUPFORM_H - -#include <QDialog> - -#include "group.h" -#include "ui_groupForm.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 |