summaryrefslogtreecommitdiff
path: root/src/gui/main.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-23 21:48:12 -0400
committerbd <bdunahu@operationnull.com>2025-03-23 21:48:12 -0400
commite05f5306f50029b0f5f471b70cfe45749d0d21f6 (patch)
tree80edca6ac9dca277e0212ce78885c9d142942456 /src/gui/main.cc
parentdedaa26c8068fd125a40a0261aeedd74c8d395e5 (diff)
Remove Python, combine main files
Diffstat (limited to 'src/gui/main.cc')
-rw-r--r--src/gui/main.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gui/main.cc b/src/gui/main.cc
deleted file mode 100644
index e592da9..0000000
--- a/src/gui/main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "GUI.h"
-
-#include <QApplication>
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- GUI w;
- w.show();
- return a.exec();
-}