diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-16 21:24:56 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-16 21:24:56 +0800 |
commit | 442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf (patch) | |
tree | 53cecf23142c4258380787a52a0818a662a2aa0b /embed/ephy-embed.h | |
parent | 0c5500f9a15581b1689d7187d308f9ed7eb15f5e (diff) | |
download | gsoc2013-epiphany-442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf.tar.gz 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.h | 4 |
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); |