diff options
author | Benjamin Otte <otte@redhat.com> | 2012-01-11 03:59:17 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-01-11 15:48:54 +0100 |
commit | 6962b49a99eadc7f4266d13f66fca8611802fe09 (patch) | |
tree | 435f3cbbde090bd4c4e4575fdd3d6a14a4b56422 /gtk/gtkcsslookupprivate.h | |
parent | 694a9114af0fa1a5c9a59a34f30ac7f96c6c7e67 (diff) | |
download | gtk+-6962b49a99eadc7f4266d13f66fca8611802fe09.tar.gz |
css: Introduce GtkCssComputedValues
To be used for storing computed values. Is the replacement for
GtkStyleProperties, which is now legacy code.
Diffstat (limited to 'gtk/gtkcsslookupprivate.h')
-rw-r--r-- | gtk/gtkcsslookupprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcsslookupprivate.h b/gtk/gtkcsslookupprivate.h index 90cf0cf6df..f966902595 100644 --- a/gtk/gtkcsslookupprivate.h +++ b/gtk/gtkcsslookupprivate.h @@ -22,9 +22,9 @@ #include <glib-object.h> #include "gtk/gtkbitmaskprivate.h" +#include "gtk/gtkcsscomputedvaluesprivate.h" #include "gtk/gtkcsssection.h" #include "gtk/gtkstylecontext.h" -#include "gtk/gtkstyleproperties.h" G_BEGIN_DECLS @@ -43,7 +43,7 @@ void _gtk_css_lookup_set (GtkCssLookup const GValue *value); void _gtk_css_lookup_resolve (GtkCssLookup *lookup, GtkStyleContext *context, - GtkStyleProperties *props); + GtkCssComputedValues *values); G_END_DECLS |