diff options
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; } |