aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-16 15:28:00 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-16 15:29:59 +0530
commit041f8933be28d0fcff1196792f30c5ca3176c155 (patch)
tree5fceaf5844f3312e8db63425c5c25825df594861 /src/main.cpp
parent350d2bd7ccf80b91abdff154344f0ce88080a195 (diff)
downloadnull-browser-041f8933be28d0fcff1196792f30c5ca3176c155.tar.gz
null-browser-041f8933be28d0fcff1196792f30c5ca3176c155.zip
Add configuration class
Diffstat (limited to '')
-rw-r--r--src/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3e2e2eb..c6c9a29 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,7 +4,6 @@
#include "widgets/MainWindow.hpp"
int main(int argc, char *argv[]) {
- // QCoreApplication::setAttribute(Qt::AA_UseDesktopOpenGL);
QApplication app(argc, argv);
MainWindow mainWindow;
@@ -13,15 +12,3 @@ int main(int argc, char *argv[]) {
return app.exec();
}
-
-// auto L = luaL_newstate();
-//
-// luaL_openlibs(L);
-//
-// auto status = luaL_dostring(L, "print(500 + 10 * 3)");
-// if (status) {
-// fprintf(stderr, "Couldn't load file: %s\n", lua_tostring(L, -1));
-// exit(1);
-// }
-// lua_close(L);
-// exit(0);