diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-01-04 03:22:58 +0800 |
---|---|---|
committer | Crispin Flowerday <crispin@src.gnome.org> | 2005-01-04 03:22:58 +0800 |
commit | 93497400220851d93705a0340dbff5d8d45d176f (patch) | |
tree | 8fabe4abf9c8793ac6ebb59bc1026378acb77227 /src/ephy-tab.h | |
parent | 569106975500d16750f6bf9dcfd716c4e898f891 (diff) | |
download | gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.gz gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.bz2 gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.lz gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.xz gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.zst gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.zip |
Ensure that flags and enums start with 'Ephy'
2005-01-03 Crispin Flowerday <gnome@flowerday.cx>
* embed/ephy-embed-event.c:
* embed/ephy-embed-event.h:
* embed/ephy-embed-persist.c: (ephy_embed_persist_set_flags):
* embed/ephy-embed-persist.h:
* embed/ephy-embed.c: (ephy_embed_base_init),
(ephy_embed_get_security_level),
(ephy_embed_print_preview_navigate):
* embed/ephy-embed.h:
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyBrowser.h:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/mozilla-embed-event.cpp:
* embed/mozilla/mozilla-embed-persist.cpp:
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-tab.c: (ephy_tab_address_expire_get_type),
(ephy_tab_navigation_flags_get_type), (ephy_tab_document_type_cb),
(update_net_state_message), (build_progress_from_requests),
(ephy_tab_net_state_cb), (ephy_tab_dom_mouse_click_cb),
(ephy_tab_security_change_cb), (ephy_tab_update_navigation_flags),
(ephy_tab_set_location), (ephy_tab_set_security_level):
* src/ephy-tab.h:
* src/ephy-window.c: (sync_tab_document_type),
(sync_tab_navigation), (sync_tab_security), (sync_tab_zoom),
(update_popups_tooltips), (show_embed_popup),
(ephy_window_class_init):
* src/popup-commands.c: (popup_cmd_copy_link_address):
Ensure that flags and enums start with 'Ephy'
Diffstat (limited to 'src/ephy-tab.h')
-rw-r--r-- | src/ephy-tab.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ephy-tab.h b/src/ephy-tab.h index 9cb9a9dbc..261291eb5 100644 --- a/src/ephy-tab.h +++ b/src/ephy-tab.h @@ -47,14 +47,14 @@ typedef enum TAB_NAV_UP = 1 << 0, TAB_NAV_BACK = 1 << 1, TAB_NAV_FORWARD = 1 << 2 -} TabNavigationFlags; +} EphyTabNavigationFlags; typedef enum { TAB_ADDRESS_EXPIRE_NOW, TAB_ADDRESS_EXPIRE_NEXT, TAB_ADDRESS_EXPIRE_CURRENT -} TabAddressExpire; +} EphyTabAddressExpire; struct _EphyTab { @@ -83,7 +83,7 @@ EphyEmbed *ephy_tab_get_embed (EphyTab *tab); EphyTab *ephy_tab_for_embed (EphyEmbed *embed); -EmbedDocumentType ephy_tab_get_document_type (EphyTab *tab); +EphyEmbedDocumentType ephy_tab_get_document_type (EphyTab *tab); const char *ephy_tab_get_icon_address (EphyTab *tab); @@ -96,13 +96,13 @@ int ephy_tab_get_load_percent (EphyTab *tab); void ephy_tab_set_location (EphyTab *tab, const char *location, - TabAddressExpire expire); + EphyTabAddressExpire expire); const char *ephy_tab_get_location (EphyTab *tab); -TabNavigationFlags ephy_tab_get_navigation_flags (EphyTab *tab); +EphyTabNavigationFlags ephy_tab_get_navigation_flags (EphyTab *tab); -EmbedSecurityLevel ephy_tab_get_security_level (EphyTab *tab); +EphyEmbedSecurityLevel ephy_tab_get_security_level (EphyTab *tab); void ephy_tab_get_size (EphyTab *tab, int *width, |