diff options
Diffstat (limited to 'src/editEntryForm.h')
-rw-r--r-- | src/editEntryForm.h | 25 |
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 |