aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-02-23 21:18:37 -0600
committerTed Gould <ted@gould.cx>2011-02-23 21:18:37 -0600
commit021dd71e638567f708d86f0805e01b055888083d (patch)
tree78c1901ec1c9f8b540e2292583f8bc3ab732a583 /src
parent6335283b2e1551066fd12ef89c4916122ea27ffe (diff)
downloadlibayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.tar.gz
libayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.tar.bz2
libayatana-appindicator-021dd71e638567f708d86f0805e01b055888083d.zip
Dropping the new accessible description signal
Diffstat (limited to 'src')
-rw-r--r--src/app-indicator.c17
-rw-r--r--src/app-indicator.h10
2 files changed, 0 insertions, 27 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
diff --git a/src/app-indicator.h b/src/app-indicator.h
index 9e53447..cce6b9e 100644
--- a/src/app-indicator.h
+++ b/src/app-indicator.h
@@ -112,11 +112,6 @@ G_BEGIN_DECLS
String identifier for the #AppIndicator::scroll-event signal.
*/
-/**
- APP_INDICATOR_SIGNAL_NEW_ACCESSIBLE_DESC:
-
- String identifier for the #AppIndicator::new-accessible-desc signal.
-*/
#define APP_INDICATOR_SIGNAL_NEW_ICON "new-icon"
#define APP_INDICATOR_SIGNAL_NEW_ATTENTION_ICON "new-attention-icon"
#define APP_INDICATOR_SIGNAL_NEW_STATUS "new-status"
@@ -124,7 +119,6 @@ G_BEGIN_DECLS
#define APP_INDICATOR_SIGNAL_CONNECTION_CHANGED "connection-changed"
#define APP_INDICATOR_SIGNAL_NEW_ICON_THEME_PATH "new-icon-theme-path"
#define APP_INDICATOR_SIGNAL_SCROLL_EVENT "scroll-event"
-#define APP_INDICATOR_SIGNAL_NEW_ACCESSIBLE_DESC "new-accessible-desc"
/**
AppIndicatorCategory:
@@ -174,7 +168,6 @@ typedef struct _AppIndicatorPrivate AppIndicatorPrivate;
@new_status: Slot for #AppIndicator::new-status.
@new_icon_theme_path: Slot for #AppIndicator::new-icon-theme-path
@new_label: Slot for #AppIndicator::new-label.
- @new_accessible_desc: Slot for #AppIndicator::new-accessible-desc.
@connection_changed: Slot for #AppIndicator::connection-changed.
@scroll_event: Slot for #AppIndicator::scroll-event
@app_indicator_reserved_ats: Reserved for future use.
@@ -211,9 +204,6 @@ struct _AppIndicatorClass {
const gchar *label,
const gchar *guide,
gpointer user_data);
- void (* new_accessible_desc) (AppIndicator *indicator,
- const gchar *accessible_desc);
-
/* Local Signals */
void (* connection_changed) (AppIndicator * indicator,