diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-06 05:04:24 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-06 05:04:24 +0800 |
commit | 23fa2e15713edb80aadf60df21dda1795dfab74d (patch) | |
tree | ef9c99f535d2010379f6a13c4e0d318ac7277bd2 /src/popup-commands.c | |
parent | 914b6f95e19447d1b25209b9bb3cda2942513775 (diff) | |
download | gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar.gz gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar.bz2 gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar.lz gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar.xz gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.tar.zst gsoc2013-epiphany-23fa2e15713edb80aadf60df21dda1795dfab74d.zip |
Get rid of EphyEmbedFactory.
It's useless now, since there's only one backend.
Diffstat (limited to 'src/popup-commands.c')
-rw-r--r-- | src/popup-commands.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/popup-commands.c b/src/popup-commands.c index 00db15425..282020818 100644 --- a/src/popup-commands.c +++ b/src/popup-commands.c @@ -23,7 +23,6 @@ #include "popup-commands.h" #include "ephy-shell.h" #include "ephy-embed-container.h" -#include "ephy-embed-factory.h" #include "ephy-embed-persist.h" #include "ephy-embed-utils.h" #include "ephy-prefs.h" @@ -215,7 +214,7 @@ save_property_url (GtkAction *action, location = g_value_get_string (value); persist = EPHY_EMBED_PERSIST - (ephy_embed_factory_new_object (EPHY_TYPE_EMBED_PERSIST)); + (g_object_new (EPHY_TYPE_EMBED_PERSIST, NULL)); ephy_embed_persist_set_fc_title (persist, title); ephy_embed_persist_set_fc_parent (persist, GTK_WINDOW (window)); @@ -326,7 +325,7 @@ popup_cmd_set_image_as_background (GtkAction *action, location = g_value_get_string (value); persist = EPHY_EMBED_PERSIST - (ephy_embed_factory_new_object (EPHY_TYPE_EMBED_PERSIST)); + (g_object_new (EPHY_TYPE_EMBED_PERSIST, NULL)); base = g_path_get_basename (location); base_converted = g_filename_from_utf8 (base, -1, NULL, NULL, NULL); @@ -448,7 +447,7 @@ save_temp_source (const char *address) } persist = EPHY_EMBED_PERSIST - (ephy_embed_factory_new_object (EPHY_TYPE_EMBED_PERSIST)); + (g_object_new (EPHY_TYPE_EMBED_PERSIST, NULL)); ephy_embed_persist_set_source (persist, address); ephy_embed_persist_set_flags (persist, EPHY_EMBED_PERSIST_FROM_CACHE | |