diff options
author | Crispin Flowerday <gnome@flowerday.cx> | 2005-01-06 04:09:09 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-06 04:09:09 +0800 |
commit | a5d0e720fade615d0009a42d38b195a2db57b959 (patch) | |
tree | 680971bcad3fb63c103cdb282eba881d82aad6ba /src/ppview-toolbar.c | |
parent | 41e8ca8d5152c7acf6e39070b49c8f3715110e8d (diff) | |
download | gsoc2013-epiphany-a5d0e720fade615d0009a42d38b195a2db57b959.tar.gz gsoc2013-epiphany-a5d0e720fade615d0009a42d38b195a2db57b959.tar.zst gsoc2013-epiphany-a5d0e720fade615d0009a42d38b195a2db57b959.zip |
Consistently start enum names with EPHY_*.
2005-01-05 Crispin Flowerday <gnome@flowerday.cx>
* embed/ephy-embed-event.c: (ephy_embed_event_context_get_type):
* embed/ephy-embed-event.h:
* embed/ephy-embed-persist.c: (ephy_embed_persist_flags_get_type):
* embed/ephy-embed-persist.h:
* embed/ephy-embed.c: (ephy_embed_net_state_get_type),
(ephy_embed_ppv_navigation_get_type),
(ephy_embed_security_level_get_type),
(ephy_embed_document_type_get_type):
* embed/ephy-embed.h:
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_download):
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/EventContext.cpp:
* embed/mozilla/MozDownload.cpp:
* embed/mozilla/mozilla-embed-persist.cpp:
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-shell.c: (ephy_shell_new_tab):
* src/ephy-tab.c: (ephy_tab_address_expire_get_type),
(ephy_tab_navigation_flags_get_type), (ephy_tab_set_property),
(ephy_tab_class_init), (ephy_tab_get_document_type),
(ephy_tab_address_cb), (update_net_state_message),
(build_progress_from_requests), (ensure_page_info),
(ephy_tab_net_state_cb), (ephy_tab_dom_mouse_click_cb),
(ephy_tab_init), (ephy_tab_update_navigation_flags),
(ephy_tab_set_location), (ephy_tab_get_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):
* src/popup-commands.c: (popup_cmd_copy_link_address),
(save_property_url), (popup_cmd_set_image_as_background),
(save_temp_source):
* src/ppview-toolbar.c: (toolbar_cmd_ppv_goto_first),
(toolbar_cmd_ppv_goto_last), (toolbar_cmd_ppv_go_back),
(toolbar_cmd_ppv_go_forward):
* src/toolbar.c: (sync_user_input_cb):
* src/window-commands.c: (window_cmd_file_save_as),
(save_temp_source):
Consistently start enum names with EPHY_*.
Diffstat (limited to 'src/ppview-toolbar.c')
-rwxr-xr-x | src/ppview-toolbar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ppview-toolbar.c b/src/ppview-toolbar.c index 9b2e6824b..f2637252c 100755 --- a/src/ppview-toolbar.c +++ b/src/ppview-toolbar.c @@ -280,7 +280,7 @@ toolbar_cmd_ppv_goto_first (GtkUIManager *merge, embed = ephy_window_get_active_embed (window); g_return_if_fail (EPHY_IS_EMBED (embed)); - ephy_embed_print_preview_navigate (embed, PRINTPREVIEW_HOME, 0); + ephy_embed_print_preview_navigate (embed, EPHY_EMBED_PRINTPREVIEW_HOME, 0); t->priv->current_page = 1; @@ -298,7 +298,7 @@ toolbar_cmd_ppv_goto_last (GtkUIManager *merge, g_return_if_fail (embed != NULL); ephy_embed_print_preview_navigate (embed, - PRINTPREVIEW_END, + EPHY_EMBED_PRINTPREVIEW_END, 0); t->priv->current_page = ephy_embed_print_preview_n_pages (embed); @@ -334,7 +334,7 @@ toolbar_cmd_ppv_go_back (GtkUIManager *merge, t->priv->current_page = clamp_page_limits (t, t->priv->current_page - 1); ephy_embed_print_preview_navigate (embed, - PRINTPREVIEW_GOTO_PAGENUM, + EPHY_EMBED_PRINTPREVIEW_GOTO_PAGENUM, t->priv->current_page); toolbar_update_sensitivity (t); @@ -353,7 +353,7 @@ toolbar_cmd_ppv_go_forward (GtkUIManager *merge, t->priv->current_page = clamp_page_limits (t, t->priv->current_page + 1); ephy_embed_print_preview_navigate (embed, - PRINTPREVIEW_GOTO_PAGENUM, + EPHY_EMBED_PRINTPREVIEW_GOTO_PAGENUM, t->priv->current_page); toolbar_update_sensitivity (t); |