summaryrefslogtreecommitdiff
path: root/src/qookie.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2022-04-30 21:12:44 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2022-05-26 18:41:21 +0200
commit0dea7c3dad15f397600458ae9a81af29e95752fa (patch)
treeb6b17f93f907e139274b967c02ac356b56422b20 /src/qookie.cc
parent0ae26aded59f09b969592c2e600dba176954c619 (diff)
Make 'super' database, encapsulating both the krecipes one and the gourmet one. Add small vignettes to the recipe list images to indicate from which soucre each item is coming from.
Diffstat (limited to 'src/qookie.cc')
-rw-r--r--src/qookie.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/qookie.cc b/src/qookie.cc
index 1f6f9d8..b818fa1 100644
--- a/src/qookie.cc
+++ b/src/qookie.cc
@@ -29,15 +29,13 @@
#include <iostream>
#include "mainwindow.h"
-#include "database_gourmet.h"
-#include "database_krecipes.h"
+#include "database.h"
int main(int argc, char *argv[])
{
QApplication qapp(argc, argv);
- //DatabaseGourmet db("/mnt/atuin/docs/tine/Fritid/Mad/recipes.db");
- DatabaseKrecipes db("/mnt/atuin/docs/tine/Fritid/Mad/krecipes.krecdb");
+ Database db;
MainWindow mainwindow(db);
mainwindow.resize(1280, 768);