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-notebook.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-notebook.h')
-rw-r--r-- | src/ephy-notebook.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ephy-notebook.h b/src/ephy-notebook.h index 00b2ec579..19cdc2f3a 100644 --- a/src/ephy-notebook.h +++ b/src/ephy-notebook.h @@ -37,11 +37,11 @@ G_BEGIN_DECLS #define EPHY_IS_NOTEBOOK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_NOTEBOOK)) #define EPHY_NOTEBOOK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_NOTEBOOK, EphyNotebookClass)) -typedef struct EphyNotebookClass EphyNotebookClass; -typedef struct EphyNotebook EphyNotebook; -typedef struct EphyNotebookPrivate EphyNotebookPrivate; +typedef struct _EphyNotebookClass EphyNotebookClass; +typedef struct _EphyNotebook EphyNotebook; +typedef struct _EphyNotebookPrivate EphyNotebookPrivate; -struct EphyNotebook +struct _EphyNotebook { GtkNotebook parent; @@ -49,7 +49,7 @@ struct EphyNotebook EphyNotebookPrivate *priv; }; -struct EphyNotebookClass +struct _EphyNotebookClass { GtkNotebookClass parent_class; |