diff options
author | Benjamin Otte <otte@redhat.com> | 2012-07-18 16:55:32 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-08-28 15:42:23 +0200 |
commit | 2cb9dac14c2299c992827863553bd0b019765772 (patch) | |
tree | e56e8b05d8c5d3165edd5f9847f15026d34a8045 /gtk/gtkstylecontextprivate.h | |
parent | 0e2f35ed882ab11d010866d32f2f65232145b8d0 (diff) | |
download | gtk+-2cb9dac14c2299c992827863553bd0b019765772.tar.gz |
stylecontext: Pass the changes in the parent to validation function
This way, inherited properties can be updated.
Diffstat (limited to 'gtk/gtkstylecontextprivate.h')
-rw-r--r-- | gtk/gtkstylecontextprivate.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkstylecontextprivate.h b/gtk/gtkstylecontextprivate.h index a62b4675f4..9642793923 100644 --- a/gtk/gtkstylecontextprivate.h +++ b/gtk/gtkstylecontextprivate.h @@ -20,6 +20,7 @@ #include "gtkstylecontext.h" #include "gtksymboliccolor.h" +#include "gtkbitmaskprivate.h" #include "gtkcssvalueprivate.h" G_BEGIN_DECLS @@ -37,7 +38,8 @@ const GValue * _gtk_style_context_peek_style_property (GtkStyleContext *c GParamSpec *pspec); void _gtk_style_context_validate (GtkStyleContext *context, gint64 timestamp, - GtkCssChange change); + GtkCssChange change, + const GtkBitmask*parent_changes); void _gtk_style_context_queue_invalidate (GtkStyleContext *context, GtkCssChange change); gboolean _gtk_style_context_check_region_name (const gchar *str); |