From 04b074517fbad81f111982c3252b232956de579d Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 29 Oct 2017 18:23:58 -0400 Subject: mq_application_new(): Pass profile argument to mq_config_new() --- (limited to 'src') diff --git a/src/application.c b/src/application.c index 476ad31..083c1aa 100644 --- a/src/application.c +++ b/src/application.c @@ -74,12 +74,12 @@ download_started_cb(WebKitWebContext G_GNUC_UNUSED *context, } MqApplication * -mq_application_new(gchar G_GNUC_UNUSED *profile, gboolean G_GNUC_UNUSED private) +mq_application_new(gchar *profile, gboolean G_GNUC_UNUSED private) { MqApplication *application; application = malloc(sizeof(*application)); - application->config = mq_config_new("default"); + application->config = mq_config_new(profile); mq_config_load(application->config); application->windows = NULL; application->marquee_mode = FALSE; -- cgit v0.9.1