From 0dea7c3dad15f397600458ae9a81af29e95752fa Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 30 Apr 2022 21:12:44 +0200 Subject: 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. --- src/qookie.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/qookie.cc') 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 #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); -- cgit v1.2.3