aboutsummaryrefslogtreecommitdiff
path: root/src/application.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.c')
-rw-r--r--src/application.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/application.c b/src/application.c
index 335db11..d960ed9 100644
--- a/src/application.c
+++ b/src/application.c
@@ -89,13 +89,13 @@ application_init(MESSENGER_Application *app,
89 hdy_init(); 89 hdy_init();
90 90
91 app->application = gtk_application_new( 91 app->application = gtk_application_new(
92 "org.gnunet.Messenger", 92 MESSENGER_APPLICATION_ID,
93 G_APPLICATION_NON_UNIQUE 93 G_APPLICATION_NON_UNIQUE
94 ); 94 );
95 95
96 resources_register(); 96 resources_register();
97 97
98 notify_init("Messenger-GTK"); 98 notify_init(MESSENGER_APPLICATION_NAME);
99 app->notifications = NULL; 99 app->notifications = NULL;
100 100
101 _load_ui_stylesheets(app); 101 _load_ui_stylesheets(app);
@@ -177,8 +177,8 @@ _application_chat_thread(void *args)
177 app->chat.status = (GNUNET_PROGRAM_run( 177 app->chat.status = (GNUNET_PROGRAM_run(
178 app->argc, 178 app->argc,
179 app->argv, 179 app->argv,
180 "messenger-gtk", 180 MESSENGER_APPLICATION_BINARY,
181 gettext_noop("A GTK based GUI for the Messenger service of GNUnet."), 181 gettext_noop(MESSENGER_APPLICATION_DESCRIPTION),
182 options, 182 options,
183 &chat_messenger_run, 183 &chat_messenger_run,
184 app 184 app