Fix compile error from splitting bitmask code

GtkBitMask was typedef'd twice.
This commit is contained in:
John Ralls 2012-03-01 12:08:57 -08:00
parent 63b0149b84
commit b2a8e6ed04
2 changed files with 1 additions and 4 deletions

View File

@ -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);

View File

@ -18,7 +18,6 @@
* Authors: Benjamin Otte <otte@gnome.org>
*/
#include "gtkallocatedbitmaskprivate.h"
static inline GtkBitmask *
_gtk_bitmask_new (void)