]> Pileus Git - ~andy/gtk/commitdiff
GtkStyleContext: '_' prefix the structs, gtk-doc prefers this.
authorCarlos Garnacho <carlosg@gnome.org>
Wed, 20 Oct 2010 17:52:50 +0000 (19:52 +0200)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:38:24 +0000 (15:38 +0100)
gtk/gtkstylecontext.h

index a7c74b5489e50a6d4712a435dbdd785a9fd2fc8f..574beddf209ab16554c349fd7ea4471fa174bd20 100644 (file)
@@ -33,16 +33,16 @@ G_BEGIN_DECLS
 #define GTK_IS_STYLE_CONTEXT_CLASS(c)  (G_TYPE_CHECK_CLASS_TYPE    ((c), GTK_TYPE_STYLE_CONTEXT))
 #define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS  ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
 
-typedef struct GtkStyleContext GtkStyleContext;
-typedef struct GtkStyleContextClass GtkStyleContextClass;
+typedef struct _GtkStyleContext GtkStyleContext;
+typedef struct _GtkStyleContextClass GtkStyleContextClass;
 
-struct GtkStyleContext
+struct _GtkStyleContext
 {
   GObject parent_object;
   gpointer priv;
 };
 
-struct GtkStyleContextClass
+struct _GtkStyleContextClass
 {
   GObjectClass parent_class;