diff options
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; |