diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-09-15 04:02:35 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-09-15 04:02:35 (EDT) |
commit | 352f14686f7cf0e8b54426f982c59e170f79cd7a (patch) | |
tree | decf712473a20232f3256ae088509930fd38173a /src | |
parent | 4d6906bdfe9fb2d6838f6bf095517b313ebe07c0 (diff) | |
download | marquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.zip marquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.tar.gz marquee-352f14686f7cf0e8b54426f982c59e170f79cd7a.tar.bz2 |
main(): Call mq_main_window_new() and gtk_main()
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; } |