aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-cookie-manager.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-02-20 19:49:43 +0800
committerChristian Persch <chpe@src.gnome.org>2004-02-20 19:49:43 +0800
commitfa5e66589f95ba71a51dd743bf038420f5d68bfb (patch)
treef68ced29a1d849f2da7de2f09665db584643100d /embed/ephy-cookie-manager.c
parent41b71497e0aabd9f2c33c9e025da7561d0adaa02 (diff)
downloadgsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar.gz
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar.bz2
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar.lz
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar.xz
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.tar.zst
gsoc2013-epiphany-fa5e66589f95ba71a51dd743bf038420f5d68bfb.zip
s/IFace/Iface/g to match the gtk+ naming convention.
2004-02-20 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-command-manager.c: (ephy_command_manager_get_type), (ephy_command_manager_base_init), (ephy_command_manager_do_command), (ephy_command_manager_can_do_command): * embed/ephy-command-manager.h: * embed/ephy-cookie-manager.c: (ephy_cookie_manager_get_type), (ephy_cookie_manager_base_init), (ephy_cookie_manager_list_cookies), (ephy_cookie_manager_remove_cookie), (ephy_cookie_manager_clear): * embed/ephy-cookie-manager.h: * embed/ephy-embed-event.c: (ephy_embed_event_get_type), (ephy_embed_event_get_event_type), (ephy_embed_event_get_context), (ephy_embed_event_get_modifier), (ephy_embed_event_get_coords), (ephy_embed_event_get_property), (ephy_embed_event_has_property), (ephy_embed_event_get_dom_event): * embed/ephy-embed-event.h: * embed/ephy-embed-single.c: (ephy_embed_single_get_type), (ephy_embed_single_iface_init), (ephy_embed_single_clear_cache), (ephy_embed_single_clear_auth_cache), (ephy_embed_single_set_offline_mode), (ephy_embed_single_load_proxy_autoconf), (ephy_embed_single_get_font_list): * embed/ephy-embed-single.h: * embed/ephy-embed.c: (ephy_embed_get_type), (ephy_embed_base_init), (ephy_embed_load_url), (ephy_embed_stop_load), (ephy_embed_can_go_back), (ephy_embed_can_go_forward), (ephy_embed_can_go_up), (ephy_embed_get_go_up_list), (ephy_embed_go_back), (ephy_embed_go_forward), (ephy_embed_go_up), (ephy_embed_get_title), (ephy_embed_get_location), (ephy_embed_get_link_message), (ephy_embed_get_js_status), (ephy_embed_reload), (ephy_embed_zoom_set), (ephy_embed_zoom_get), (ephy_embed_shistory_n_items), (ephy_embed_shistory_get_nth), (ephy_embed_shistory_get_pos), (ephy_embed_shistory_go_nth), (ephy_embed_get_security_level), (ephy_embed_find_set_properties), (ephy_embed_find_next), (ephy_embed_activate), (ephy_embed_set_encoding), (ephy_embed_get_encoding_info), (ephy_embed_print), (ephy_embed_print_preview_close), (ephy_embed_print_preview_n_pages), (ephy_embed_print_preview_navigate), (ephy_embed_has_modified_forms): * embed/ephy-embed.h: * embed/ephy-password-manager.c: (ephy_password_manager_get_type), (ephy_password_manager_add), (ephy_password_manager_remove), (ephy_password_manager_list): * embed/ephy-password-manager.h: * embed/ephy-permission-manager.c: (ephy_permission_manager_get_type), (ephy_permission_manager_base_init), (ephy_permission_manager_add), (ephy_permission_manager_remove), (ephy_permission_manager_clear), (ephy_permission_manager_test), (ephy_permission_manager_list): * embed/ephy-permission-manager.h: * embed/mozilla/mozilla-embed-event.cpp: * embed/mozilla/mozilla-embed-single.cpp: * embed/mozilla/mozilla-embed.cpp: s/IFace/Iface/g to match the gtk+ naming convention.
Diffstat (limited to 'embed/ephy-cookie-manager.c')
-rw-r--r--embed/ephy-cookie-manager.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/embed/ephy-cookie-manager.c b/embed/ephy-cookie-manager.c
index c3d45dfad..fe0e26f83 100644
--- a/embed/ephy-cookie-manager.c
+++ b/embed/ephy-cookie-manager.c
@@ -109,7 +109,7 @@ ephy_cookie_manager_get_type (void)
{
static const GTypeInfo our_info =
{
- sizeof (EphyCookieManagerIFace),
+ sizeof (EphyCookieManagerIface),
ephy_cookie_manager_base_init,
NULL,
};
@@ -140,7 +140,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_signal_new ("cookie-added",
EPHY_TYPE_COOKIE_MANAGER,
G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (EphyCookieManagerIFace, added),
+ G_STRUCT_OFFSET (EphyCookieManagerIface, added),
NULL, NULL,
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
@@ -157,7 +157,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_signal_new ("cookie-changed",
EPHY_TYPE_COOKIE_MANAGER,
G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (EphyCookieManagerIFace, changed),
+ G_STRUCT_OFFSET (EphyCookieManagerIface, changed),
NULL, NULL,
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
@@ -174,7 +174,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_signal_new ("cookie-deleted",
EPHY_TYPE_COOKIE_MANAGER,
G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (EphyCookieManagerIFace, deleted),
+ G_STRUCT_OFFSET (EphyCookieManagerIface, deleted),
NULL, NULL,
g_cclosure_marshal_VOID__BOXED,
G_TYPE_NONE,
@@ -191,7 +191,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_signal_new ("cookie-rejected",
EPHY_TYPE_COOKIE_MANAGER,
G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (EphyCookieManagerIFace, rejected),
+ G_STRUCT_OFFSET (EphyCookieManagerIface, rejected),
NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE,
@@ -208,7 +208,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
g_signal_new ("cookies-cleared",
EPHY_TYPE_COOKIE_MANAGER,
G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (EphyCookieManagerIFace, cleared),
+ G_STRUCT_OFFSET (EphyCookieManagerIface, cleared),
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE,
@@ -229,7 +229,7 @@ ephy_cookie_manager_base_init (gpointer base_iface)
GList *
ephy_cookie_manager_list_cookies (EphyCookieManager *manager)
{
- EphyCookieManagerIFace *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
+ EphyCookieManagerIface *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
return iface->list (manager);
}
@@ -244,7 +244,7 @@ void
ephy_cookie_manager_remove_cookie (EphyCookieManager *manager,
const EphyCookie *cookie)
{
- EphyCookieManagerIFace *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
+ EphyCookieManagerIface *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
iface->remove (manager, cookie);
}
@@ -257,6 +257,6 @@ ephy_cookie_manager_remove_cookie (EphyCookieManager *manager,
void
ephy_cookie_manager_clear (EphyCookieManager *manager)
{
- EphyCookieManagerIFace *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
+ EphyCookieManagerIface *iface = EPHY_COOKIE_MANAGER_GET_IFACE (manager);
iface->clear (manager);
}