diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-07 02:14:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-07 02:14:42 +0800 |
commit | 35ad841aceed89072e2cc6f589405a6feb411f74 (patch) | |
tree | 2fdf16ad0c9c630733841728c9bd0e3406bae4ba /src/ephy-shell.h | |
parent | 58a62ea3932ab6bdb599a0c519460a56622fe884 (diff) | |
download | gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.gz gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.zst gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.zip |
Use glib-mkenums to generate the enum and flags get_type functions.
2005-01-06 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/Makefile.am:
* embed/ephy-embed-event.c:
* embed/ephy-embed-event.h:
* embed/ephy-embed-persist.c:
* embed/ephy-embed-persist.h:
* embed/ephy-embed.c:
* embed/ephy-embed.h:
* embed/ephy-permission-manager.c:
* embed/ephy-permission-manager.h:
* lib/egg/Makefile.am:
* lib/egg/egg-toolbars-model.c:
* lib/egg/egg-toolbars-model.h:
* src/Makefile.am:
* src/ephy-link.c:
* src/ephy-link.h:
* src/ephy-navigation-action.c:
* src/ephy-shell.c: (ephy_shell_error_quark):
* src/ephy-shell.h:
* src/ephy-tab.c:
* src/ephy-tab.h:
* src/ephy-window.c:
Use glib-mkenums to generate the enum and flags get_type functions.
Diffstat (limited to 'src/ephy-shell.h')
-rw-r--r-- | src/ephy-shell.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/ephy-shell.h b/src/ephy-shell.h index b12b30af8..d807cd139 100644 --- a/src/ephy-shell.h +++ b/src/ephy-shell.h @@ -38,14 +38,10 @@ G_BEGIN_DECLS #define EPHY_IS_SHELL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SHELL)) #define EPHY_IS_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SHELL)) #define EPHY_SHELL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SHELL, EphyShellClass)) -#define EPHY_TYPE_SHELL_ERROR (ephy_shell_error_get_type()) -#define EPHY_TYPE_SHELL_STARTUP_FLAGS (ephy_shell_startup_flags_get_type()) -#define EPHY_TYPE_NEW_TAB_FLAGS (ephy_new_tab_flags_get_type()) - -typedef struct EphyShell EphyShell; -typedef struct EphyShellClass EphyShellClass; -typedef struct EphyShellPrivate EphyShellPrivate; +typedef struct _EphyShell EphyShell; +typedef struct _EphyShellClass EphyShellClass; +typedef struct _EphyShellPrivate EphyShellPrivate; extern EphyShell *ephy_shell; @@ -87,7 +83,7 @@ typedef enum EPHY_NEW_TAB_IN_EXISTING_WINDOW = 1 << 11 } EphyNewTabFlags; -struct EphyShell +struct _EphyShell { EphyEmbedShell parent; @@ -95,7 +91,7 @@ struct EphyShell EphyShellPrivate *priv; }; -struct EphyShellClass +struct _EphyShellClass { EphyEmbedShellClass parent_class; }; |