summaryrefslogtreecommitdiff
path: root/modules/gtk
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2015-09-20 10:51:17 +0200
committerAlfred E. Heggestad <aeh@db.org>2015-09-20 10:51:17 +0200
commit4e4ad78c059e9f89638b74cdabf2451ac729a66b (patch)
tree41c82b3081e0d42a5d173ffb6829f57d67399dcb /modules/gtk
parent293b9af446ef8f72e490e6372cf88ce367a1bc0a (diff)
gtk: fix warnings for Debian 7.8
Diffstat (limited to 'modules/gtk')
-rw-r--r--modules/gtk/gtk_mod.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/gtk/gtk_mod.c b/modules/gtk/gtk_mod.c
index 628980c..0bba177 100644
--- a/modules/gtk/gtk_mod.c
+++ b/modules/gtk/gtk_mod.c
@@ -176,6 +176,7 @@ static void menu_on_presence_set(GtkMenuItem *item, struct gtk_mod *mod)
}
+#ifdef USE_NOTIFICATIONS
static void menu_on_incoming_call_answer(GtkMenuItem *menuItem,
struct gtk_mod *mod)
{
@@ -192,6 +193,7 @@ static void menu_on_incoming_call_reject(GtkMenuItem *menuItem,
denotify_incoming_call(mod, call);
mqueue_push(mod->mq, MQ_HANGUP, call);
}
+#endif
static GtkMenuItem *accounts_menu_add_item(struct gtk_mod *mod,
@@ -293,6 +295,7 @@ static void accounts_menu_set_status(struct gtk_mod *mod,
}
+#ifdef USE_NOTIFICATIONS
static void notify_incoming_call(struct gtk_mod *mod,
struct call *call)
{
@@ -334,7 +337,9 @@ static void notify_incoming_call(struct gtk_mod *mod,
notify_notification_set_urgency(notification, NOTIFY_URGENCY_CRITICAL);
notify_notification_show(notification, NULL);
g_object_unref(notification);
-
+#else
+ (void)msg;
+ (void)title;
#endif
/* Add incoming call to the app menu */
@@ -363,6 +368,7 @@ static void notify_incoming_call(struct gtk_mod *mod,
G_CALLBACK(menu_on_incoming_call_reject), mod);
gtk_menu_shell_append(GTK_MENU_SHELL(call_menu), menu_item);
}
+#endif
static void denotify_incoming_call(struct gtk_mod *mod, struct call *call)