aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-session.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-01-09 00:40:45 +0800
committerChristian Persch <chpe@src.gnome.org>2005-01-09 00:40:45 +0800
commit1b0e8ed184e0d629e7bb2575f61ca4a97834de71 (patch)
tree294f019697fb14dcccd417909fd7889a89f44de2 /src/ephy-session.h
parent7ce29fb6fa59d22f516f07535f31bcb227331ef0 (diff)
downloadgsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.gz
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.bz2
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.lz
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.xz
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.zst
gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.zip
Prefix structs with _.
2005-01-08 Christian Persch <chpe@cvs.gnome.org> * src/ephy-notebook.c: * src/ephy-notebook.h: * src/ephy-session.c: * src/ephy-session.h: * src/ephy-statusbar.c: * src/ephy-statusbar.h: * src/ephy-toolbars-model.c: * src/ephy-toolbars-model.h: Prefix structs with _.
Diffstat (limited to 'src/ephy-session.h')
-rw-r--r--src/ephy-session.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ephy-session.h b/src/ephy-session.h
index 18d97624c..d595ef06a 100644
--- a/src/ephy-session.h
+++ b/src/ephy-session.h
@@ -38,11 +38,11 @@ G_BEGIN_DECLS
#define EPHY_IS_SESSION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SESSION))
#define EPHY_SESSION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SESSION, EphySessionClass))
-typedef struct EphySession EphySession;
-typedef struct EphySessionClass EphySessionClass;
-typedef struct EphySessionPrivate EphySessionPrivate;
+typedef struct _EphySession EphySession;
+typedef struct _EphySessionClass EphySessionClass;
+typedef struct _EphySessionPrivate EphySessionPrivate;
-struct EphySession
+struct _EphySession
{
GObject parent;
@@ -50,7 +50,7 @@ struct EphySession
EphySessionPrivate *priv;
};
-struct EphySessionClass
+struct _EphySessionClass
{
GObjectClass parent_class;
};