summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-15 04:02:35 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-15 04:02:35 (EDT)
commit352f14686f7cf0e8b54426f982c59e170f79cd7a (patch)
treedecf712473a20232f3256ae088509930fd38173a /src/main.c
parent4d6906bdfe9fb2d6838f6bf095517b313ebe07c0 (diff)
downloadmarquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.zip
marquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.tar.gz
marquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.tar.bz2
main(): Call mq_main_window_new() and gtk_main()
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index f22e39b..2f3063a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -27,6 +27,8 @@
#include <gtk/gtk.h>
+#include "main-window.h"
+
static gchar *opt_profile;
static gboolean opt_private;
static gboolean opt_version;
@@ -71,5 +73,9 @@ main(int argc, char *argv[])
return EXIT_SUCCESS;
}
+ mq_main_window_new();
+
+ gtk_main();
+
return EXIT_SUCCESS;
}