diff options
author | Xan Lopez <xan@gnome.org> | 2010-10-04 17:36:43 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-10-04 17:36:43 +0800 |
commit | 639a3f6aa2b594c5a5f339ac32db599ae98ed39b (patch) | |
tree | e7f276d9af719b714280f732b8efe1e1c07fcd33 /embed | |
parent | 2d67545a24df8c486588043ab43c5af322251ab5 (diff) | |
download | gsoc2013-epiphany-639a3f6aa2b594c5a5f339ac32db599ae98ed39b.tar.gz gsoc2013-epiphany-639a3f6aa2b594c5a5f339ac32db599ae98ed39b.tar.zst gsoc2013-epiphany-639a3f6aa2b594c5a5f339ac32db599ae98ed39b.zip |
ephy-embed: add _ prefix to instance/class structs
Diffstat (limited to 'embed')
-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; }; |