diff options
Diffstat (limited to 'src/app-indicator.h')
-rw-r--r-- | src/app-indicator.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/app-indicator.h b/src/app-indicator.h index 31b7a4a..b17f023 100644 --- a/src/app-indicator.h +++ b/src/app-indicator.h @@ -160,7 +160,6 @@ typedef struct _AppIndicatorPrivate AppIndicatorPrivate; there is no Application Indicator area available. @unfallback: The function that gets called if an Application Indicator area appears after the fallback has been created. - @app_indicator_reserved_1: Reserved for future use. @app_indicator_reserved_2: Reserved for future use. The signals and external functions that make up the #AppIndicator @@ -178,9 +177,6 @@ struct _AppIndicatorClass { void (* new_status) (AppIndicator *indicator, const gchar *status, gpointer user_data); - void (* new_icon_theme_path) (AppIndicator *indicator, - const gchar *icon_theme_path, - gpointer user_data); /* Local Signals */ void (* connection_changed) (AppIndicator * indicator, @@ -192,8 +188,11 @@ struct _AppIndicatorClass { void (*unfallback) (AppIndicator * indicator, GtkStatusIcon * status_icon); + void (* new_icon_theme_path) (AppIndicator *indicator, + const gchar *icon_theme_path, + gpointer user_data); + /* Reserved */ - void (*app_indicator_reserved_1)(void); void (*app_indicator_reserved_2)(void); }; |