diff options
author | Benjamin Otte <otte@redhat.com> | 2012-03-17 02:36:11 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-17 08:59:07 +0200 |
commit | a94b85d37592cb9119216cd9f4820e27edfe5e15 (patch) | |
tree | 47ad100f777ac9f52fe977eb3f5264e173f1ad82 /gtk/gtkmodifierstyle.c | |
parent | c0b7c3321d15daf05a26818745367051300ac176 (diff) | |
download | gtk+-a94b85d37592cb9119216cd9f4820e27edfe5e15.tar.gz |
css: Make the style provider take a matcher as an input argument
Diffstat (limited to 'gtk/gtkmodifierstyle.c')
-rw-r--r-- | gtk/gtkmodifierstyle.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtkmodifierstyle.c b/gtk/gtkmodifierstyle.c index 35ad0ea6dd..c16a051c44 100644 --- a/gtk/gtkmodifierstyle.c +++ b/gtk/gtkmodifierstyle.c @@ -144,15 +144,13 @@ gtk_modifier_style_provider_get_color (GtkStyleProviderPrivate *provider, static void gtk_modifier_style_provider_lookup (GtkStyleProviderPrivate *provider, - GtkWidgetPath *path, - GtkStateFlags state, + const GtkCssMatcher *matcher, GtkCssLookup *lookup) { GtkModifierStyle *style = GTK_MODIFIER_STYLE (provider); _gtk_style_provider_private_lookup (GTK_STYLE_PROVIDER_PRIVATE (style->priv->style), - path, - state, + matcher, lookup); } |