[epiphany] ephy-embed: add _ prefix to instance/class structs



commit 639a3f6aa2b594c5a5f339ac32db599ae98ed39b
Author: Xan Lopez <xan gnome org>
Date:   Mon Oct 4 18:36:43 2010 +0900

    ephy-embed: add _ prefix to instance/class structs

 embed/ephy-embed.c |    2 +-
 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 9674743..0f6b011 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 e6b4e77..24d5f2b 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;
 };
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]