aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-11-16 23:26:14 +0800
committerXan Lopez <xan@src.gnome.org>2007-11-16 23:26:14 +0800
commit41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105 (patch)
tree0450b2a579bff5deb6712535009661cdf8a9a22d /embed
parent7d550e78174ac29246872d51d25697cff4b837e8 (diff)
downloadgsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar.gz
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar.bz2
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar.lz
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar.xz
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.tar.zst
gsoc2013-epiphany-41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105.zip
Rename ephy_embed_container_jump_to_child to ephy_embed_container_set_active_child.
svn path=/trunk/; revision=7699
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-container.c10
-rw-r--r--embed/ephy-embed-container.h8
2 files changed, 9 insertions, 9 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);
}
/**
diff --git a/embed/ephy-embed-container.h b/embed/ephy-embed-container.h
index 609fc08f6..948a0d77c 100644
--- a/embed/ephy-embed-container.h
+++ b/embed/ephy-embed-container.h
@@ -44,8 +44,8 @@ struct _EphyEmbedContainerIface
gint position,
gboolean jump_to);
- void (* jump_to_child) (EphyEmbedContainer *container,
- EphyEmbed *child);
+ void (* set_active_child) (EphyEmbedContainer *container,
+ EphyEmbed *child);
void (* remove_child) (EphyEmbedContainer *container,
EphyEmbed *child);
@@ -66,8 +66,8 @@ void ephy_embed_container_add_child (EphyEmbedContainer *container,
gint position,
gboolean jump_to);
-void ephy_embed_container_jump_to_child (EphyEmbedContainer *container,
- EphyEmbed *child);
+void ephy_embed_container_set_active_child (EphyEmbedContainer *container,
+ EphyEmbed *child);
void ephy_embed_container_remove_child (EphyEmbedContainer *container,
EphyEmbed *child);