aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2007-11-17 03:16:23 +0800
committerXan Lopez <xan@src.gnome.org>2007-11-17 03:16:23 +0800
commitc8e725445775b36f1e25ff7148b4927ae24e8b89 (patch)
treef154f8c3b1de636366200acdaa627a868eff660b /embed
parent7eadb5acd98f20acabb002f7975804dc5c5c8200 (diff)
downloadgsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar.gz
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar.bz2
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar.lz
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar.xz
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.tar.zst
gsoc2013-epiphany-c8e725445775b36f1e25ff7148b4927ae24e8b89.zip
Yes, tabs.
svn path=/trunk/; revision=7707
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-container.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/embed/ephy-embed-container.c b/embed/ephy-embed-container.c
index 704e61b51..057f9842f 100644
--- a/embed/ephy-embed-container.c
+++ b/embed/ephy-embed-container.c
@@ -89,8 +89,8 @@ ephy_embed_container_add_child (EphyEmbedContainer *container,
{
EphyEmbedContainerIface *iface;
- g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), -1);
- g_return_val_if_fail (EPHY_IS_EMBED (child), -1);
+ g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), -1);
+ g_return_val_if_fail (EPHY_IS_EMBED (child), -1);
iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
return iface->add_child (container, child, position, jump_to);
@@ -109,8 +109,8 @@ ephy_embed_container_set_active_child (EphyEmbedContainer *container,
{
EphyEmbedContainerIface *iface;
- g_return_if_fail (EPHY_IS_EMBED_CONTAINER (container));
- g_return_if_fail (EPHY_IS_EMBED (child));
+ g_return_if_fail (EPHY_IS_EMBED_CONTAINER (container));
+ g_return_if_fail (EPHY_IS_EMBED (child));
iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
@@ -130,8 +130,8 @@ ephy_embed_container_remove_child (EphyEmbedContainer *container,
{
EphyEmbedContainerIface *iface;
- g_return_if_fail (EPHY_IS_EMBED_CONTAINER (container));
- g_return_if_fail (EPHY_IS_EMBED (child));
+ g_return_if_fail (EPHY_IS_EMBED_CONTAINER (container));
+ g_return_if_fail (EPHY_IS_EMBED (child));
iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
@@ -189,7 +189,7 @@ ephy_embed_container_get_is_popup (EphyEmbedContainer *container)
{
EphyEmbedContainerIface *iface;
- g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), FALSE);
+ g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), FALSE);
iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
return iface->get_is_popup (container);
@@ -209,7 +209,7 @@ ephy_embed_container_get_chrome (EphyEmbedContainer *container)
{
EphyEmbedContainerIface *iface;
- g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), 0);
+ g_return_val_if_fail (EPHY_IS_EMBED_CONTAINER (container), 0);
iface = EPHY_EMBED_CONTAINER_GET_IFACE (container);
return iface->get_chrome (container);