summaryrefslogtreecommitdiff
path: root/src/editEntryForm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/editEntryForm.cpp')
-rw-r--r--src/editEntryForm.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/editEntryForm.cpp b/src/editEntryForm.cpp
new file mode 100644
index 0000000..68a29fe
--- /dev/null
+++ b/src/editEntryForm.cpp
@@ -0,0 +1,15 @@
+#include "backend/db_sqlite.h"
+#include "edit_entry_form.h"
+
+EditEntryForm::EditEntryForm(const Entry &e) :
+ entry(e)
+{
+ // load uic
+ ui.setupUi(this);
+
+ // set titles
+ this->setWindowTitle("Edit Entry");
+ ui.title->setText("Edit Entry");
+
+ // widgets setup
+}