From aab7a1055359ce919d73d882ed102d4144a594bb Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Thu, 29 Mar 2018 09:17:47 +0200 Subject: [PATCH] Moved mainWindow to gui directory with other dialogs. --- RecipeDB.pro | 10 ++++++---- {userInterface => gui}/mainwindow.cpp | 0 {userInterface => gui}/mainwindow.h | 0 3 files changed, 6 insertions(+), 4 deletions(-) rename {userInterface => gui}/mainwindow.cpp (100%) rename {userInterface => gui}/mainwindow.h (100%) diff --git a/RecipeDB.pro b/RecipeDB.pro index 1c8f716..580f9c9 100644 --- a/RecipeDB.pro +++ b/RecipeDB.pro @@ -14,7 +14,6 @@ TEMPLATE = app SOURCES += model/recipe/instruction.cpp \ model/recipe/recipe.cpp \ - userInterface/mainwindow.cpp \ main.cpp \ model/database/database.cpp \ model/recipe/ingredients/unitofmeasure.cpp \ @@ -34,7 +33,8 @@ SOURCES += model/recipe/instruction.cpp \ utils/aspectratiopixmaplabel.cpp \ utils/stringutils.cpp \ gui/openrecipedialog.cpp \ - model/recipe/recipetablemodel.cpp + model/recipe/recipetablemodel.cpp \ + gui/mainwindow.cpp HEADERS += model/recipe/instruction.h \ model/recipe/recipe.h \ @@ -58,7 +58,8 @@ HEADERS += model/recipe/instruction.h \ utils/aspectratiopixmaplabel.h \ utils/stringutils.h \ gui/openrecipedialog.h \ - model/recipe/recipetablemodel.h + model/recipe/recipetablemodel.h \ + gui/mainwindow.h LIBS += -ldl \ @@ -67,7 +68,8 @@ FORMS += gui/mainwindow.ui \ gui/newDialogs/newingredientdialog.ui \ gui/newDialogs/newtagdialog.ui \ gui/newDialogs/newunitdialog.ui \ - gui/openrecipedialog.ui + gui/openrecipedialog.ui \ + gui/mainwindow.ui DISTFILES += \ .gitignore diff --git a/userInterface/mainwindow.cpp b/gui/mainwindow.cpp similarity index 100% rename from userInterface/mainwindow.cpp rename to gui/mainwindow.cpp diff --git a/userInterface/mainwindow.h b/gui/mainwindow.h similarity index 100% rename from userInterface/mainwindow.h rename to gui/mainwindow.h