diff options
Diffstat (limited to 'src/daemon')
-rw-r--r-- | src/daemon/engines.c | 4 | ||||
-rw-r--r-- | src/daemon/engines.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/engines.c b/src/daemon/engines.c index 6e841c2..dc71bf1 100644 --- a/src/daemon/engines.c +++ b/src/daemon/engines.c @@ -37,7 +37,7 @@ typedef struct { void (*destroy_notification) (GtkWindow* nw); void (*show_notification) (GtkWindow* nw); void (*hide_notification) (GtkWindow* nw); - void (*set_notification_hints) (GtkWindow* nw, GHashTable* hints); + void (*set_notification_hints) (GtkWindow* nw, GVariant *hints); void (*set_notification_text) (GtkWindow* nw, const char* summary, const char* body); void (*set_notification_icon) (GtkWindow* nw, GdkPixbuf* pixbuf); void (*set_notification_arrow) (GtkWindow* nw, gboolean visible, int x, int y); @@ -251,7 +251,7 @@ void theme_hide_notification(GtkWindow* nw) } } -void theme_set_notification_hints(GtkWindow* nw, GHashTable* hints) +void theme_set_notification_hints(GtkWindow* nw, GVariant *hints) { ThemeEngine* engine = g_object_get_data(G_OBJECT(nw), "_theme_engine"); diff --git a/src/daemon/engines.h b/src/daemon/engines.h index 10ea48e..be3c498 100644 --- a/src/daemon/engines.h +++ b/src/daemon/engines.h @@ -33,7 +33,7 @@ void theme_destroy_notification (GtkWindow *nw); void theme_show_notification (GtkWindow *nw); void theme_hide_notification (GtkWindow *nw); void theme_set_notification_hints (GtkWindow *nw, - GHashTable *hints); + GVariant *hints); void theme_set_notification_timeout (GtkWindow *nw, glong timeout); void theme_notification_tick (GtkWindow *nw, |