aboutsummaryrefslogtreecommitdiff
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
parent06b99181bdd885fa73f1afe2d4efa2313e7e8b04 (diff)
parent69faf20805fa83517abe01f00060a9bbe0235da5 (diff)
downloadparamano-7386dff9f7c768c5226bd140cec3091ba90bb9df.tar.xz
Merge branch 'gtk3'
Conflicts: Makefile tray.c
-rw-r--r--Makefile3
-rw-r--r--bat_tray/bat_tray.c2
-rw-r--r--tray.c2
3 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2cda57a..9088522 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,7 @@ GTK_CFLAGS = -I/usr/include/gtk-2.0 \
-I/usr/include/cairo \
-I/usr/include/gdk-pixbuf-2.0 \
-I/usr/include/atk-1.0
-
-GTK_LIBS = -lgtk-x11-2.0 \
+GTK_LIBS = -lgtk-3 \
-lgobject-2.0
diff --git a/bat_tray/bat_tray.c b/bat_tray/bat_tray.c
index 181f8d5..ea7b3c7 100644
--- a/bat_tray/bat_tray.c
+++ b/bat_tray/bat_tray.c
@@ -135,7 +135,7 @@ void bat_tray_init()
gtk_status_icon_set_from_file(tray, icon_file);
gtk_status_icon_set_has_tooltip (tray, TRUE);
g_signal_connect(G_OBJECT(tray), "query-tooltip", GTK_SIGNAL_FUNC(update_tooltip), NULL);
- gtk_timeout_add(5000, update_icon, NULL);
+ g_timeout_add(5000, update_icon, NULL);
}
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();
}