From dec218cba8b00ca33a75235e8171aa055048308b Mon Sep 17 00:00:00 2001 From: tobiglaser <76131623+tobiglaser@users.noreply.github.com> Date: Sun, 15 May 2022 22:27:55 +0200 Subject: [PATCH] finish T2C --- Text2Console/main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Text2Console/main.cpp b/Text2Console/main.cpp index fd3e533..b01f553 100644 --- a/Text2Console/main.cpp +++ b/Text2Console/main.cpp @@ -1,11 +1,16 @@ #include "mainwindow.h" +#include "control.h" #include <QApplication> + + int main(int argc, char *argv[]) { QApplication a(argc, argv); - MainWindow w; - w.show(); + MainWindow view; + Control control(&view); + + view.show(); return a.exec(); } -- GitLab