aboutsummaryrefslogtreecommitdiff
path: root/tray.c
diff options
context:
space:
mode:
authorDavid <dbphillipsnz@gmail.com>2014-04-30 17:14:36 +1200
committerDavid <dbphillipsnz@gmail.com>2014-04-30 17:14:36 +1200
commit7386dff9f7c768c5226bd140cec3091ba90bb9df (patch)
tree423b0cfa42af6056784a96f702d4ffd2437097f3 /tray.c
parent06b99181bdd885fa73f1afe2d4efa2313e7e8b04 (diff)
parent69faf20805fa83517abe01f00060a9bbe0235da5 (diff)
downloadparamano-7386dff9f7c768c5226bd140cec3091ba90bb9df.tar.xz
Merge branch 'gtk3'
Conflicts: Makefile tray.c
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 ac9596d..378c386 100644
--- a/tray.c
+++ b/tray.c
@@ -221,7 +221,7 @@ void tray_init()
gtk_status_icon_set_has_tooltip (tray, TRUE);
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);
- gtk_timeout_add(1000, update_icon, NULL);
+ g_timeout_add(1000, update_icon, NULL);
tray_init_menu();
}