aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-02-10 23:06:43 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-02-10 23:06:43 -0500
commitf36b6114e64d278c5876727ff435547789b35c7f (patch)
tree18ae72f3824ae582bd3da1b6a1887b23c5b48899 /main.cpp
parent1a92e988d63753d2904ac775c4b30589e76c7e5c (diff)
downloadAleeBrowser-f36b6114e64d278c5876727ff435547789b35c7f.tar.gz
AleeBrowser-f36b6114e64d278c5876727ff435547789b35c7f.tar.bz2
AleeBrowser-f36b6114e64d278c5876727ff435547789b35c7f.zip
Added basic navigation and got rid of the search button
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 07bb4a7..0cac83d 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,11 +1,13 @@
#include "mainbrowser.h"
#include <QApplication>
+#include <QDebug>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
mainbrowser browser;
+ qDebug() << "Starting Alee Browser";
browser.show();
return a.exec();
}