aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-02-10 21:24:06 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-02-10 21:24:06 -0500
commit1a92e988d63753d2904ac775c4b30589e76c7e5c (patch)
tree0a446ad31a46eefa580d1741190bf653fe9a3f56 /main.cpp
parentf9ab17d41c3c403eba221f7bc176d01efebe8d03 (diff)
downloadAleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.gz
AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.tar.bz2
AleeBrowser-1a92e988d63753d2904ac775c4b30589e76c7e5c.zip
Added about dialog, address bar works
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 7a461a0..07bb4a7 100644
--- a/main.cpp
+++ b/main.cpp
@@ -5,7 +5,7 @@
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
- mainbrowser w;
- w.show();
+ mainbrowser browser;
+ browser.show();
return a.exec();
}