Marco Trevisan (Treviño) has proposed merging lp:~3v1n0/indicator-session/add-name-hint into lp:indicator-session.
Requested reviews: Indicator Applet Developers (indicator-applet-developers) For more details, see: https://code.launchpad.net/~3v1n0/indicator-session/add-name-hint/+merge/81654 Added the name hint to the indicator, to use it on unity-panel-service. I'm using the autoconf generated config.h PACKAGE value with the proper suffixes. -- https://code.launchpad.net/~3v1n0/indicator-session/add-name-hint/+merge/81654 Your team ayatana-commits is subscribed to branch lp:indicator-session.
=== modified file 'src/indicator-session.c' --- src/indicator-session.c 2011-09-27 04:30:46 +0000 +++ src/indicator-session.c 2011-11-08 23:01:23 +0000 @@ -118,8 +118,8 @@ object_class->finalize = indicator_session_finalize; IndicatorObjectClass * io_class = INDICATOR_OBJECT_CLASS(klass); - io_class->get_entries = indicator_session_get_entries; - io_class->get_location = indicator_session_get_location; + io_class->get_entries = indicator_session_get_entries; + io_class->get_location = indicator_session_get_location; return; } @@ -140,6 +140,7 @@ GtkWidget* avatar_icon = NULL; // users + self->users.name_hint = PACKAGE"-users"; self->users.menu = GTK_MENU (dbusmenu_gtkmenu_new (INDICATOR_USERS_DBUS_NAME, INDICATOR_USERS_DBUS_OBJECT)); // Set the image to the default avator image @@ -169,7 +170,9 @@ const gchar *greeter_var; greeter_var = g_getenv("INDICATOR_GREETER_MODE"); greeter_mode = g_strcmp0(greeter_var, "1") == 0; + // devices + self->devices.name_hint = PACKAGE"-devices"; self->devices.menu = GTK_MENU (dbusmenu_gtkmenu_new(INDICATOR_SESSION_DBUS_NAME, INDICATOR_SESSION_DBUS_OBJECT)); if (greeter_mode){
_______________________________________________ Mailing list: https://launchpad.net/~ayatana-commits Post to : ayatana-commits@lists.launchpad.net Unsubscribe : https://launchpad.net/~ayatana-commits More help : https://help.launchpad.net/ListHelp