css: Move enum to the only source file using it

This commit is contained in:
Benjamin Otte 2012-04-02 08:47:11 +02:00
parent e597f4d6a9
commit 9e4341f730
2 changed files with 4 additions and 4 deletions

View File

@ -57,6 +57,10 @@
/*** REGISTRATION ***/
typedef enum {
GTK_STYLE_PROPERTY_INHERIT = (1 << 0)
} GtkStylePropertyFlags;
static void
gtk_css_style_property_register (const char * name,
guint expected_id,

View File

@ -34,10 +34,6 @@ G_BEGIN_DECLS
typedef struct _GtkStyleProperty GtkStyleProperty;
typedef struct _GtkStylePropertyClass GtkStylePropertyClass;
typedef enum {
GTK_STYLE_PROPERTY_INHERIT = (1 << 0)
} GtkStylePropertyFlags;
typedef GtkCssValue * (* GtkStyleQueryFunc) (guint id,
gpointer data);