diff options
author | Ted Gould <ted@gould.cx> | 2010-02-11 08:41:13 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-02-11 08:41:13 -0600 |
commit | 0e783eb26287d21359e4c23beb26601300c5b353 (patch) | |
tree | 815836f52b41fafe2844c532e55afee9c625b97d /tests/test-libappindicator-status-server.c | |
parent | 07cba3340daeb169dc1e2ef28c01bafa7fb60448 (diff) | |
parent | ec5e7ea86df0da2859bfe4de9d668ce66987d8ab (diff) | |
download | libayatana-appindicator-0e783eb26287d21359e4c23beb26601300c5b353.tar.gz libayatana-appindicator-0e783eb26287d21359e4c23beb26601300c5b353.tar.bz2 libayatana-appindicator-0e783eb26287d21359e4c23beb26601300c5b353.zip |
Fix to make the dbus paths unique by using the ID of the application.
Diffstat (limited to 'tests/test-libappindicator-status-server.c')
-rw-r--r-- | tests/test-libappindicator-status-server.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test-libappindicator-status-server.c b/tests/test-libappindicator-status-server.c index 9e58ba9..79b1759 100644 --- a/tests/test-libappindicator-status-server.c +++ b/tests/test-libappindicator-status-server.c @@ -55,7 +55,7 @@ toggle (gpointer userdata) gint main (gint argc, gchar * argv[]) { - g_type_init(); + gtk_init(&argc, &argv); g_usleep(100000); @@ -64,6 +64,12 @@ main (gint argc, gchar * argv[]) AppIndicator * ci = app_indicator_new ("my-id", "my-icon-name", APP_INDICATOR_CATEGORY_APPLICATION_STATUS); app_indicator_set_attention_icon (ci, "my-attention-icon"); + GtkMenu * menu = GTK_MENU(gtk_menu_new()); + GtkMenuItem * item = GTK_MENU_ITEM(gtk_menu_item_new_with_label("Label")); + gtk_menu_shell_append(GTK_MENU_SHELL(menu), GTK_WIDGET(item)); + + app_indicator_set_menu(ci, menu); + g_timeout_add(50, toggle, ci); mainloop = g_main_loop_new(NULL, FALSE); |