diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-01-04 02:28:50 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-01-04 02:28:50 +0800 |
commit | b369515aba539de144a26529515fdcbeb1b7e07d (patch) | |
tree | 363d35033982d7d8d1243e4f65decb81f4cbbd53 /src/ephy-tab.h | |
parent | a27574b5576a9ee8cbbd83ad361290c7d0bc9704 (diff) | |
download | gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar.gz gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar.bz2 gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar.lz gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar.xz gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.tar.zst gsoc2013-epiphany-b369515aba539de144a26529515fdcbeb1b7e07d.zip |
Add some more types for enums and flags
2005-01-03 Crispin Flowerday <gnome@flowerday.cx>
* src/ephy-shell.c: (ephy_shell_error_get_type),
(ephy_shell_startup_flags_get_type), (ephy_new_tab_flags_get_type):
* src/ephy-shell.h:
* src/ephy-tab.c: (ephy_tab_address_expire_get_type),
(ephy_tab_navigation_flags_get_type):
* src/ephy-tab.h:
Add some more types for enums and flags
Diffstat (limited to 'src/ephy-tab.h')
-rw-r--r-- | src/ephy-tab.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ephy-tab.h b/src/ephy-tab.h index 133fe4ccc..9cb9a9dbc 100644 --- a/src/ephy-tab.h +++ b/src/ephy-tab.h @@ -35,6 +35,9 @@ G_BEGIN_DECLS #define EPHY_IS_TAB_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_TAB)) #define EPHY_TAB_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_TAB, EphyTabClass)) +#define EPHY_TYPE_TAB_NAVIGATION_FLAGS (ephy_tab_navigation_flags_get_type()) +#define EPHY_TYPE_TAB_ADDRESS_EXPIRE (ephy_tab_address_expire_get_type()) + typedef struct _EphyTabClass EphyTabClass; typedef struct _EphyTab EphyTab; typedef struct _EphyTabPrivate EphyTabPrivate; @@ -66,6 +69,10 @@ struct _EphyTabClass GtkBinClass parent_class; }; +GType ephy_tab_address_expire_get_type (void); + +GType ephy_tab_navigation_flags_get_type (void); + GType ephy_tab_get_type (void); EphyTab *ephy_tab_new (void); |