aboutsummaryrefslogtreecommitdiff
path: root/tray.c
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-04-30 11:56:44 +1200
committerDavid <dbphillipsnz@gmail.com>2014-04-30 11:56:44 +1200
commit69faf20805fa83517abe01f00060a9bbe0235da5 (patch)
tree74c6053e24fd4fee0b6c23d3b275d69f06db5230 /tray.c
parent86b27fa02d16a0d906edcadce6b009e1402c56f8 (diff)
downloadparamano-69faf20805fa83517abe01f00060a9bbe0235da5.tar.xz
Inital jump to Gtk3
Diffstat (limited to 'tray.c')
-rw-r--r--tray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tray.c b/tray.c
index 83ada19..c4c908c 100644
--- a/tray.c
+++ b/tray.c
@@ -242,7 +242,7 @@ void tray_init()
g_signal_connect(G_OBJECT(tray), "query-tooltip", GTK_SIGNAL_FUNC(update_tooltip), NULL);
g_signal_connect(G_OBJECT(tray), "popup-menu", GTK_SIGNAL_FUNC(popup_menu), NULL);
g_signal_connect(G_OBJECT(tray), "activate", GTK_SIGNAL_FUNC(activate), NULL);
- gtk_timeout_add(1000, update_icon, NULL);
+ g_timeout_add(1000, update_icon, NULL);
tray_init_menu();
}