diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-12 17:50:09 (EST) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-12 18:16:39 (EST) |
commit | 88e7b2b199332c387fd47347c8723aaf4e1d0255 (patch) | |
tree | d0d28b795710bbe890843c78588ccf1b05cc1709 /src | |
parent | 0dd9b52232264472210314400445525770854d7a (diff) | |
download | marquee-88e7b2b199332c387fd47347c8723aaf4e1d0255.zip marquee-88e7b2b199332c387fd47347c8723aaf4e1d0255.tar.gz marquee-88e7b2b199332c387fd47347c8723aaf4e1d0255.tar.bz2 |
mq_application_new(): Add a couple blank lines
Diffstat (limited to 'src')
-rw-r--r-- | src/application.c | 2 |
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); |