diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/app-indicator.h | 9 | ||||
-rw-r--r-- | src/dbus-properties-client.h | 2 |
2 files changed, 5 insertions, 6 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); }; diff --git a/src/dbus-properties-client.h b/src/dbus-properties-client.h index dc9f299..6f08e78 100644 --- a/src/dbus-properties-client.h +++ b/src/dbus-properties-client.h @@ -39,7 +39,7 @@ org_freedesktop_DBus_Properties_get_async_callback (DBusGProxy *proxy, DBusGProx { DBusGAsyncData *data = (DBusGAsyncData*) user_data; GError *error = NULL; - GValue OUT_Value = {0}; + GValue OUT_Value = { 0, }; dbus_g_proxy_end_call (proxy, call, &error, G_TYPE_VALUE, &OUT_Value, G_TYPE_INVALID); (*(org_freedesktop_DBus_Properties_get_reply)data->cb) (proxy, OUT_Value, error, data->userdata); return; |