diff options
-rw-r--r-- | embed/ephy-embed.c | 2 | ||||
-rw-r--r-- | embed/ephy-embed.h | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 9674743ce..0f6b01198 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -59,7 +59,7 @@ static gboolean ephy_embed_inspect_close_cb (WebKitWebInspector *inspector, #define EPHY_EMBED_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_EMBED, EphyEmbedPrivate)) -struct EphyEmbedPrivate +struct _EphyEmbedPrivate { GtkBox *top_widgets_vbox; GtkScrolledWindow *scrolled_window; diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index e6b4e77f0..24d5f2bba 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -36,18 +36,18 @@ G_BEGIN_DECLS #define EPHY_IS_EMBED_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_EMBED)) #define EPHY_EMBED_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_EMBED, EphyEmbedClass)) -typedef struct EphyEmbedClass EphyEmbedClass; -typedef struct EphyEmbed EphyEmbed; -typedef struct EphyEmbedPrivate EphyEmbedPrivate; +typedef struct _EphyEmbedClass EphyEmbedClass; +typedef struct _EphyEmbed EphyEmbed; +typedef struct _EphyEmbedPrivate EphyEmbedPrivate; -struct EphyEmbed { +struct _EphyEmbed { GtkVBox parent_instance; /*< private >*/ EphyEmbedPrivate *priv; }; -struct EphyEmbedClass { +struct _EphyEmbedClass { GtkVBoxClass parent_class; }; |