diff options
author | Benjamin Otte <otte@redhat.com> | 2020-01-23 02:42:01 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-01-28 02:17:02 +0100 |
commit | aa7c5e96a6f863888fd09c1ca07d7c4123b9cd6c (patch) | |
tree | 1dd08923cc3c0c714ac0848d9b302161d3832720 /gtk/gtkcssstaticstyleprivate.h | |
parent | 1953bc92bc21af40e45aa02eb9ce11abdc3d2a4e (diff) | |
download | gtk+-aa7c5e96a6f863888fd09c1ca07d7c4123b9cd6c.tar.gz |
css: Pass node through the lookup code
... instead of passing a matcher.
The matcher code is now local to the CssProvider/CssSelector machinery.
Diffstat (limited to 'gtk/gtkcssstaticstyleprivate.h')
-rw-r--r-- | gtk/gtkcssstaticstyleprivate.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/gtkcssstaticstyleprivate.h b/gtk/gtkcssstaticstyleprivate.h index 81c97bbdc0..1073f7bb0a 100644 --- a/gtk/gtkcssstaticstyleprivate.h +++ b/gtk/gtkcssstaticstyleprivate.h @@ -20,7 +20,6 @@ #ifndef __GTK_CSS_STATIC_STYLE_PRIVATE_H__ #define __GTK_CSS_STATIC_STYLE_PRIVATE_H__ -#include "gtk/gtkcssmatcherprivate.h" #include "gtk/gtkcssstyleprivate.h" G_BEGIN_DECLS @@ -53,8 +52,7 @@ GType gtk_css_static_style_get_type (void) G_GNUC_CO GtkCssStyle * gtk_css_static_style_get_default (void); GtkCssStyle * gtk_css_static_style_new_compute (GtkStyleProvider *provider, - const GtkCssMatcher *matcher, - GtkCssStyle *parent, + GtkCssNode *node, GtkCssChange change); void gtk_css_static_style_compute_value (GtkCssStaticStyle *style, |