aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2009-09-20 05:16:27 +0800
committerXan Lopez <xan@gnome.org>2009-09-20 05:16:27 +0800
commita3daa2e644fab1569a929035a26b13d01d7b7c4f (patch)
tree421f7ecb17fac869c892e3831b809b839b0c621a /embed
parent98361f61fcdfc52d2ae2682234778f3e1b384916 (diff)
downloadgsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar.gz
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar.bz2
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar.lz
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar.xz
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.tar.zst
gsoc2013-epiphany-a3daa2e644fab1569a929035a26b13d01d7b7c4f.zip
ephy-embed-container.h: fix indentation
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-container.h53
1 files changed, 23 insertions, 30 deletions
diff --git a/embed/ephy-embed-container.h b/embed/ephy-embed-container.h
index 13c602a18..b9b89b048 100644
--- a/embed/ephy-embed-container.h
+++ b/embed/ephy-embed-container.h
@@ -46,46 +46,39 @@ struct _EphyEmbedContainerIface
{
GTypeInterface parent_iface;
- gint (* add_child) (EphyEmbedContainer *container,
- EphyEmbed *child,
- gint position,
- gboolean set_active);
+ gint (* add_child) (EphyEmbedContainer *container,
+ EphyEmbed *child,
+ gint position,
+ gboolean set_active);
- void (* set_active_child) (EphyEmbedContainer *container,
- EphyEmbed *child);
+ void (* set_active_child) (EphyEmbedContainer *container,
+ EphyEmbed *child);
- void (* remove_child) (EphyEmbedContainer *container,
- EphyEmbed *child);
+ void (* remove_child) (EphyEmbedContainer *container,
+ EphyEmbed *child);
EphyEmbed * (* get_active_child) (EphyEmbedContainer *container);
- GList * (* get_children) (EphyEmbedContainer *container);
+ GList * (* get_children) (EphyEmbedContainer *container);
- gboolean (* get_is_popup) (EphyEmbedContainer *container);
+ gboolean (* get_is_popup) (EphyEmbedContainer *container);
EphyWebViewChrome (* get_chrome) (EphyEmbedContainer *container);
};
-GType ephy_embed_container_get_type (void);
-
-gint ephy_embed_container_add_child (EphyEmbedContainer *container,
- EphyEmbed *child,
- gint position,
- gboolean set_active);
-
-void ephy_embed_container_set_active_child (EphyEmbedContainer *container,
- EphyEmbed *child);
-
-void ephy_embed_container_remove_child (EphyEmbedContainer *container,
- EphyEmbed *child);
-
-EphyEmbed *ephy_embed_container_get_active_child (EphyEmbedContainer *container);
-
-GList *ephy_embed_container_get_children (EphyEmbedContainer *container);
-
-gboolean ephy_embed_container_get_is_popup (EphyEmbedContainer *container);
-
-EphyWebViewChrome ephy_embed_container_get_chrome (EphyEmbedContainer *container);
+GType ephy_embed_container_get_type (void);
+gint ephy_embed_container_add_child (EphyEmbedContainer *container,
+ EphyEmbed *child,
+ gint position,
+ gboolean set_active);
+void ephy_embed_container_set_active_child (EphyEmbedContainer *container,
+ EphyEmbed *child);
+void ephy_embed_container_remove_child (EphyEmbedContainer *container,
+ EphyEmbed *child);
+EphyEmbed * ephy_embed_container_get_active_child (EphyEmbedContainer *container);
+GList * ephy_embed_container_get_children (EphyEmbedContainer *container);
+gboolean ephy_embed_container_get_is_popup (EphyEmbedContainer *container);
+EphyWebViewChrome ephy_embed_container_get_chrome (EphyEmbedContainer *container);
G_END_DECLS