diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-06 00:01:59 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-06 00:02:32 +0800 |
commit | ecd30f7b95964ec717d5da6873492fab939f2523 (patch) | |
tree | 31db87f2d21f0289a5032936cab356c7ad3752e8 /embed/ephy-embed.c | |
parent | 7792ee06ab725d997a2f288357cbe658525a120a (diff) | |
download | gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar.gz gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar.bz2 gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar.lz gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar.xz gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.tar.zst gsoc2013-epiphany-ecd30f7b95964ec717d5da6873492fab939f2523.zip |
Fold WebKitEmbedPrefs into EphyEmbedPrefs.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index d3b092396..b32fd49fe 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -48,9 +48,8 @@ #include <string.h> #include <glib/gi18n.h> -#include "webkit-embed-prefs.h" +#include "ephy-embed-prefs.h" #include "ephy-embed.h" -#include "ephy-base-embed.h" static void ephy_embed_class_init (EphyEmbedClass *klass); static void ephy_embed_init (EphyEmbed *gs); @@ -804,7 +803,7 @@ ephy_embed_init (EphyEmbed *embed) embed->priv->inspector_window, NULL); - webkit_embed_prefs_add_embed (embed); + ephy_embed_prefs_add_embed (embed); embed->priv->history = EPHY_HISTORY (ephy_embed_shell_get_global_history (ephy_embed_shell_get_default ())); } |