diff options
author | Ted Gould <ted@gould.cx> | 2011-08-25 09:04:37 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-08-25 09:04:37 -0500 |
commit | 22c49c1e43e913b7c9c453bb7aff8baf4905bc19 (patch) | |
tree | a79a3ebf148ee1e50ab49639ead20f57e94137aa /src/messages-service.c | |
parent | 7dc2668bf7cec024e84bc1d211fab455b4c60655 (diff) | |
parent | ae8f3199a8f3c9d8ff1168465b136c579fac7385 (diff) | |
download | ayatana-indicator-messages-22c49c1e43e913b7c9c453bb7aff8baf4905bc19.tar.gz ayatana-indicator-messages-22c49c1e43e913b7c9c453bb7aff8baf4905bc19.tar.bz2 ayatana-indicator-messages-22c49c1e43e913b7c9c453bb7aff8baf4905bc19.zip |
* New upstream release.
* Fix naming of "Clear" item
* Fix alignment of items to there is a consistent gutter
Diffstat (limited to 'src/messages-service.c')
-rw-r--r-- | src/messages-service.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/messages-service.c b/src/messages-service.c index 43e79d3..e8fe576 100644 --- a/src/messages-service.c +++ b/src/messages-service.c @@ -32,7 +32,6 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include <libdbusmenu-glib/client.h> #include <libdbusmenu-glib/server.h> -#include <libdbusmenu-glib/menuitem-proxy.h> #include "im-menu-item.h" #include "app-menu-item.h" @@ -1504,7 +1503,7 @@ main (int argc, char ** argv) /* Add in the clear attention item */ clear_attention = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set(clear_attention, DBUSMENU_MENUITEM_PROP_LABEL, _("Clear Attention")); + dbusmenu_menuitem_property_set(clear_attention, DBUSMENU_MENUITEM_PROP_LABEL, _("Clear")); dbusmenu_menuitem_child_append(root_menuitem, clear_attention); g_signal_connect(G_OBJECT(dbus_interface), MESSAGE_SERVICE_DBUS_SIGNAL_ATTENTION_CHANGED, G_CALLBACK(clear_attention_handler), clear_attention); g_signal_connect(G_OBJECT(clear_attention), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(clear_attention_activate), dbus_interface); |