diff options
author | John Ralls <jralls@ceridwen.us> | 2012-03-01 12:08:57 -0800 |
---|---|---|
committer | John Ralls <jralls@ceridwen.us> | 2012-03-01 16:26:38 -0800 |
commit | b2a8e6ed047db0b306945753e53a534affacd82b (patch) | |
tree | 36fe4e5308a158127cf9f0cda35b5f2c780395c5 /gtk/gtkbitmaskprivate.h | |
parent | 63b0149b84aff87dd316ef4921b765703361a02c (diff) | |
download | gtk+-b2a8e6ed047db0b306945753e53a534affacd82b.tar.gz |
Fix compile error from splitting bitmask code
GtkBitMask was typedef'd twice.
Diffstat (limited to 'gtk/gtkbitmaskprivate.h')
-rw-r--r-- | gtk/gtkbitmaskprivate.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/gtkbitmaskprivate.h b/gtk/gtkbitmaskprivate.h index 5e61c3c70c..4a255efa26 100644 --- a/gtk/gtkbitmaskprivate.h +++ b/gtk/gtkbitmaskprivate.h @@ -21,12 +21,10 @@ #define __GTK_BITMASK_PRIVATE_H__ #include <glib.h> +#include "gtkallocatedbitmaskprivate.h" G_BEGIN_DECLS -typedef struct _GtkBitmask GtkBitmask; - - static inline GtkBitmask * _gtk_bitmask_new (void); static inline GtkBitmask * _gtk_bitmask_copy (const GtkBitmask *mask); static inline void _gtk_bitmask_free (GtkBitmask *mask); |