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 /embed/ephy-embed-persist.c | |
parent | 569106975500d16750f6bf9dcfd716c4e898f891 (diff) | |
download | gsoc2013-epiphany-93497400220851d93705a0340dbff5d8d45d176f.tar.gz 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 'embed/ephy-embed-persist.c')
-rw-r--r-- | embed/ephy-embed-persist.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/embed/ephy-embed-persist.c b/embed/ephy-embed-persist.c index 27f48026d..baa6a781c 100644 --- a/embed/ephy-embed-persist.c +++ b/embed/ephy-embed-persist.c @@ -49,7 +49,7 @@ struct EphyEmbedPersistPrivate char *persist_key; EphyEmbed *embed; long max_size; - EmbedPersistFlags flags; + EphyEmbedPersistFlags flags; GtkWindow *fc_parent; }; @@ -110,7 +110,7 @@ ephy_embed_persist_set_dest (EphyEmbedPersist *persist, * Sets the #EphyEmbed from which @persist will download data. * * An #EphyEmbed is absolutely required to download if @persist's - * #EmbedPersistFlags include %EMBED_PERSIST_COPY_PAGE. Regardless, an + * #EphyEmbedPersistFlags include %EMBED_PERSIST_COPY_PAGE. Regardless, an * #EphyEmbed should be set for <emphasis>every</emphasis> #EphyEmbedPersist, * since it determines request information such as the referring page. **/ @@ -162,13 +162,13 @@ ephy_embed_persist_set_fc_parent (EphyEmbedPersist *persist, /** * ephy_embed_persist_set_flags: * @persist: an #EphyEmbedPersist - * @value: the desired #EmbedPersistFlags + * @value: the desired #EphyEmbedPersistFlags * * Sets the flags to be used for @persist's download. **/ void ephy_embed_persist_set_flags (EphyEmbedPersist *persist, - EmbedPersistFlags value) + EphyEmbedPersistFlags value) { g_return_if_fail (EPHY_IS_EMBED_PERSIST (persist)); @@ -299,11 +299,11 @@ ephy_embed_persist_get_fc_parent (EphyEmbedPersist *persist) * ephy_embed_persist_get_flags: * @persist: an #EphyEmbedPersist * - * Returns @persist's #EmbedPersistFlags. + * Returns @persist's #EphyEmbedPersistFlags. * - * Return value: @persist's #EmbedPersistFlags + * Return value: @persist's #EphyEmbedPersistFlags **/ -EmbedPersistFlags +EphyEmbedPersistFlags ephy_embed_persist_get_flags (EphyEmbedPersist *persist) { g_return_val_if_fail (EPHY_IS_EMBED_PERSIST (persist), 0); @@ -591,7 +591,7 @@ ephy_embed_persist_cancel (EphyEmbedPersist *persist) * * Begins saving the file specified in @persist. * - * If @persist's #EmbedPersistFlags include %EMBED_PERSIST_ASK_DESTINATION, a + * If @persist's #EphyEmbedPersistFlags include %EMBED_PERSIST_ASK_DESTINATION, a * filechooser dialog will be shown first. * * The file will continue to download in the background until either the @@ -615,7 +615,7 @@ ephy_embed_persist_save (EphyEmbedPersist *persist) * * The download is synchronous. An #EphyEmbed must be specified with * ephy_embed_persist_set_embed(). The function implicitly assumes that - * @persist's #EmbedPersistFlags include %EMBED_PERSIST_COPY_PAGE. If @persist's + * @persist's #EphyEmbedPersistFlags include %EMBED_PERSIST_COPY_PAGE. If @persist's * #EphyEmbed has not finished downloading, this function will only return the * portion of data which has already been downloaded. * |