summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/application.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/application.c b/src/application.c
index 945bea9..2155937 100644
--- a/src/application.c
+++ b/src/application.c
@@ -85,10 +85,12 @@ mq_application_new(const gchar *profile)
MqApplication *application;
application = g_new0(MqApplication, 1);
+
application->profiles = mq_profiles_new();
mq_profiles_set_current(application->profiles, profile);
application->config = mq_profiles_get_current_config(
application->profiles);
+
application->windows = NULL;
application->tabs = g_hash_table_new_full(g_int64_hash, g_int64_equal,
g_free, NULL);