diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-09 00:40:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-09 00:40:45 +0800 |
commit | 1b0e8ed184e0d629e7bb2575f61ca4a97834de71 (patch) | |
tree | 294f019697fb14dcccd417909fd7889a89f44de2 /src/ephy-statusbar.h | |
parent | 7ce29fb6fa59d22f516f07535f31bcb227331ef0 (diff) | |
download | gsoc2013-epiphany-1b0e8ed184e0d629e7bb2575f61ca4a97834de71.tar.gz 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-statusbar.h')
-rw-r--r-- | src/ephy-statusbar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ephy-statusbar.h b/src/ephy-statusbar.h index f7472ee82..7a1d06c2b 100644 --- a/src/ephy-statusbar.h +++ b/src/ephy-statusbar.h @@ -35,11 +35,11 @@ G_BEGIN_DECLS #define EPHY_IS_STATUSBAR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_STATUSBAR)) #define EPHY_STATUSBAR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_STATUSBAR, EphyStatusbarClass)) -typedef struct EphyStatusbar EphyStatusbar; -typedef struct EphyStatusbarPrivate EphyStatusbarPrivate; -typedef struct EphyStatusbarClass EphyStatusbarClass; +typedef struct _EphyStatusbar EphyStatusbar; +typedef struct _EphyStatusbarPrivate EphyStatusbarPrivate; +typedef struct _EphyStatusbarClass EphyStatusbarClass; -struct EphyStatusbar +struct _EphyStatusbar { GtkStatusbar parent; @@ -52,7 +52,7 @@ struct EphyStatusbar EphyStatusbarPrivate *priv; }; -struct EphyStatusbarClass +struct _EphyStatusbarClass { GtkStatusbarClass parent_class; }; |