diff options
author | Benjamin Otte <otte@redhat.com> | 2011-12-31 19:59:16 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-01-09 18:37:53 +0100 |
commit | 341a738dc6ac8e79472c27db1a5ad0cbf0450b41 (patch) | |
tree | ed5b808f1aab6d57ad1eb69f4f048076d7c78aba /gtk/gtkcssstylepropertyprivate.h | |
parent | d9c5d37e5611c7cfcffad18ed750a774f834587f (diff) | |
download | gtk+-341a738dc6ac8e79472c27db1a5ad0cbf0450b41.tar.gz |
styleproperty: Move member variables
These variables are only relevant for style properties, but not for
shorthands, so put them there.
Diffstat (limited to 'gtk/gtkcssstylepropertyprivate.h')
-rw-r--r-- | gtk/gtkcssstylepropertyprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcssstylepropertyprivate.h b/gtk/gtkcssstylepropertyprivate.h index 0436f98ae2..32ab48dfdd 100644 --- a/gtk/gtkcssstylepropertyprivate.h +++ b/gtk/gtkcssstylepropertyprivate.h @@ -39,7 +39,9 @@ struct _GtkCssStyleProperty { GtkStyleProperty parent; + GValue initial_value; guint id; + guint inherit :1; }; struct _GtkCssStylePropertyClass |