diff options
Diffstat (limited to 'embed/mozilla')
-rw-r--r-- | embed/mozilla/mozilla-embed-event.cpp | 4 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-single.cpp | 16 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 6 |
3 files changed, 13 insertions, 13 deletions
diff --git a/embed/mozilla/mozilla-embed-event.cpp b/embed/mozilla/mozilla-embed-event.cpp index 9300457a9..0454ac3f2 100644 --- a/embed/mozilla/mozilla-embed-event.cpp +++ b/embed/mozilla/mozilla-embed-event.cpp @@ -37,7 +37,7 @@ struct MozillaEmbedEventPrivate static void mozilla_embed_event_class_init (MozillaEmbedEventClass *klass); static void mozilla_embed_event_init (MozillaEmbedEvent *event); -static void ephy_embed_event_iface_init (EphyEmbedEventIFace *iface); +static void ephy_embed_event_iface_init (EphyEmbedEventIface *iface); static GObjectClass *parent_class = NULL; @@ -184,7 +184,7 @@ mozilla_embed_event_finalize (GObject *object) } static void -ephy_embed_event_iface_init (EphyEmbedEventIFace *iface) +ephy_embed_event_iface_init (EphyEmbedEventIface *iface) { iface->get_type = impl_get_type; iface->get_context = impl_get_context; diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp index ef801f393..055f5ff80 100644 --- a/embed/mozilla/mozilla-embed-single.cpp +++ b/embed/mozilla/mozilla-embed-single.cpp @@ -99,10 +99,10 @@ struct MozillaEmbedSinglePrivate }; static void mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass); -static void ephy_embed_single_iface_init (EphyEmbedSingleIFace *iface); -static void ephy_cookie_manager_iface_init (EphyCookieManagerIFace *iface); -static void ephy_password_manager_iface_init (EphyPasswordManagerIFace *iface); -static void ephy_permission_manager_iface_init (EphyPermissionManagerIFace *iface); +static void ephy_embed_single_iface_init (EphyEmbedSingleIface *iface); +static void ephy_cookie_manager_iface_init (EphyCookieManagerIface *iface); +static void ephy_password_manager_iface_init (EphyPasswordManagerIface *iface); +static void ephy_permission_manager_iface_init (EphyPermissionManagerIface *iface); static void mozilla_embed_single_init (MozillaEmbedSingle *ges); static GObjectClass *parent_class = NULL; @@ -877,7 +877,7 @@ mozilla_embed_single_class_init (MozillaEmbedSingleClass *klass) } static void -ephy_embed_single_iface_init (EphyEmbedSingleIFace *iface) +ephy_embed_single_iface_init (EphyEmbedSingleIface *iface) { iface->clear_cache = impl_clear_cache; iface->clear_auth_cache = impl_clear_auth_cache; @@ -887,7 +887,7 @@ ephy_embed_single_iface_init (EphyEmbedSingleIFace *iface) } static void -ephy_cookie_manager_iface_init (EphyCookieManagerIFace *iface) +ephy_cookie_manager_iface_init (EphyCookieManagerIface *iface) { iface->list = impl_list_cookies; iface->remove = impl_remove_cookie; @@ -895,7 +895,7 @@ ephy_cookie_manager_iface_init (EphyCookieManagerIFace *iface) } static void -ephy_password_manager_iface_init (EphyPasswordManagerIFace *iface) +ephy_password_manager_iface_init (EphyPasswordManagerIface *iface) { iface->add = NULL; /* not implemented yet */ iface->remove = impl_remove_password; @@ -903,7 +903,7 @@ ephy_password_manager_iface_init (EphyPasswordManagerIFace *iface) } static void -ephy_permission_manager_iface_init (EphyPermissionManagerIFace *iface) +ephy_permission_manager_iface_init (EphyPermissionManagerIface *iface) { iface->add = impl_permission_manager_add; iface->remove = impl_permission_manager_remove; diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index accd424a9..fda58e858 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -44,7 +44,7 @@ static void mozilla_embed_class_init (MozillaEmbedClass *klass); static void mozilla_embed_init (MozillaEmbed *gs); static void mozilla_embed_destroy (GtkObject *object); -static void ephy_embed_iface_init (EphyEmbedIFace *iface); +static void ephy_embed_iface_init (EphyEmbedIface *iface); static void mozilla_embed_connect_signals (MozillaEmbed *membed); static void mozilla_embed_location_changed_cb (GtkMozEmbed *embed, @@ -110,7 +110,7 @@ impl_manager_can_do_command (EphyCommandManager *manager, } static void -ephy_command_manager_iface_init (EphyCommandManagerIFace *iface) +ephy_command_manager_iface_init (EphyCommandManagerIface *iface) { iface->do_command = impl_manager_do_command; iface->can_do_command = impl_manager_can_do_command; @@ -1068,7 +1068,7 @@ mozilla_embed_security_level (MozillaEmbed *membed) } static void -ephy_embed_iface_init (EphyEmbedIFace *iface) +ephy_embed_iface_init (EphyEmbedIface *iface) { iface->load_url = impl_load_url; iface->stop_load = impl_stop_load; |