From 0db5fe0c5562a248fd648abf07e7b21d96084f34 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 12 Nov 2017 16:37:44 -0500 Subject: mq_application_new(): Get MqConfig from MqProfile --- diff --git a/src/application.c b/src/application.c index 24b8094..30cd060 100644 --- a/src/application.c +++ b/src/application.c @@ -83,16 +83,12 @@ MqApplication * mq_application_new(const gchar *profile) { MqApplication *application; - gchar *current_profile; application = malloc(sizeof(*application)); application->profiles = mq_profiles_new(); mq_profiles_set_current(application->profiles, profile); - current_profile = mq_profiles_get_current(application->profiles); - application->config = mq_config_new(current_profile, - MQ_CONFIG_PROFILE_DEFAULT); - g_free(current_profile); - mq_config_load(application->config); + 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); -- cgit v0.9.1