aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-embed.h
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2009-06-16 21:24:56 +0800
committerXan Lopez <xan@gnome.org>2009-06-16 21:24:56 +0800
commit442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf (patch)
tree53cecf23142c4258380787a52a0818a662a2aa0b /embed/ephy-embed.h
parent0c5500f9a15581b1689d7187d308f9ed7eb15f5e (diff)
downloadgsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.gz
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.bz2
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.lz
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.xz
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.zst
gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.zip
Simplify widget hierarchy.
Get rid of a dummy GtkBin layer.
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r--embed/ephy-embed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h
index 9de9f70d2..879c40193 100644
--- a/embed/ephy-embed.h
+++ b/embed/ephy-embed.h
@@ -42,14 +42,14 @@ typedef struct EphyEmbed EphyEmbed;
typedef struct EphyEmbedPrivate EphyEmbedPrivate;
struct EphyEmbed {
- GtkBin parent_instance;
+ GtkScrolledWindow parent_instance;
/*< private >*/
EphyEmbedPrivate *priv;
};
struct EphyEmbedClass {
- GtkBinClass parent_class;
+ GtkScrolledWindowClass parent_class;
};
GType ephy_embed_get_type (void);