diff options
author | Ted Gould <ted@gould.cx> | 2011-02-23 21:18:37 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-23 21:18:37 -0600 |
commit | 021dd71e638567f708d86f0805e01b055888083d (patch) | |
tree | 78c1901ec1c9f8b540e2292583f8bc3ab732a583 /src/app-indicator.c | |
parent | 6335283b2e1551066fd12ef89c4916122ea27ffe (diff) | |
download | libayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.tar.gz libayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.tar.bz2 libayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.zip |
Dropping the new accessible description signal
Diffstat (limited to 'src/app-indicator.c')
-rw-r--r-- | src/app-indicator.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 858f424..814a8f1 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -106,7 +106,6 @@ enum { CONNECTION_CHANGED, NEW_ICON_THEME_PATH, SCROLL_EVENT, - NEW_ACCESSIBLE_DESC, LAST_SIGNAL }; @@ -464,22 +463,6 @@ app_indicator_class_init (AppIndicatorClass *klass) G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING); /** - AppIndicator::new-accessible-desc: - @arg0: The #AppIndicator object - @arg1: The string for the accessible description - - Emitted when #AppIndicator:accessible_desc changes. - */ - signals[NEW_ACCESSIBLE_DESC] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_ACCESSIBLE_DESC, - G_TYPE_FROM_CLASS(klass), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (AppIndicatorClass, new_accessible_desc), - NULL, NULL, - _application_service_marshal_VOID__STRING_STRING, - G_TYPE_NONE, 1, G_TYPE_STRING); - - - /** AppIndicator::connection-changed: @arg0: The #AppIndicator object @arg1: Whether we're connected or not |