aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed-container.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-embed-container.c')
-rw-r--r--embed/ephy-embed-container.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/ephy-embed-container.c b/embed/ephy-embed-container.c
index 6aee9a6fd..01e4c0520 100644
--- a/embed/ephy-embed-container.c
+++ b/embed/ephy-embed-container.c
@@ -87,18 +87,18 @@ ephy_embed_container_add_child (EphyEmbedContainer *container,
}
/**
- * ephy_embed_container_jump_to_child:
+ * ephy_embed_container_set_active_child:
* @container: an #EphyEmbedContainer
* @child: an #EphyEmbed inside @container
*
- * Sets @child as @container's active child.
+ * Sets @child as @container's active child.
**/
void
-ephy_embed_container_jump_to_child (EphyEmbedContainer *container,
- EphyEmbed *child)
+ephy_embed_container_set_active_child (EphyEmbedContainer *container,
+ EphyEmbed *child)
{
EphyEmbedContainerIface *iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
- iface->jump_to_child (container, child);
+ iface->set_active_child (container, child);
}
/**