aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2009-08-12 19:44:25 +0800
committerXan Lopez <xan@gnome.org>2009-08-12 19:47:16 +0800
commit1740e21a2843de978264b6208bce3718ad1c7a1a (patch)
tree4b3aa28fd2de6dd61bfa13f047e48c9c8ab879a5 /embed
parentcad7e6662ea287c565aa1c5d77c91d26a9ce3fd2 (diff)
downloadgsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar.gz
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar.bz2
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar.lz
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar.xz
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.tar.zst
gsoc2013-epiphany-1740e21a2843de978264b6208bce3718ad1c7a1a.zip
Remove unused stuff and clean old references to Mozilla.
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-shell.c2
-rw-r--r--embed/ephy-embed-single.c24
-rw-r--r--embed/ephy-embed-single.h3
3 files changed, 3 insertions, 26 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 7ead872f8..85eb7fa2e 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -240,7 +240,7 @@ impl_get_embed_single (EphyEmbedShell *shell)
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
_("Epiphany can't be used now. "
- "Mozilla initialization failed."));
+ "Initialization failed."));
gtk_dialog_run (GTK_DIALOG (dialog));
exit (0);
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c
index f3f99965d..a5376a8b0 100644
--- a/embed/ephy-embed-single.c
+++ b/embed/ephy-embed-single.c
@@ -353,7 +353,7 @@ ephy_embed_single_initialize (EphyEmbedSingle *single)
* ephy_embed_single_clear_cache:
* @single: the #EphyEmbedSingle
*
- * Clears the Mozilla cache (temporarily saved web pages).
+ * Clears the HTTP cache (temporarily saved web pages).
**/
void
ephy_embed_single_clear_cache (EphyEmbedSingle *single)
@@ -364,7 +364,7 @@ ephy_embed_single_clear_cache (EphyEmbedSingle *single)
* ephy_embed_single_clear_auth_cache:
* @single: the #EphyEmbedSingle
*
- * Clears the Mozilla HTTP authentication cache.
+ * Clears the HTTP authentication cache.
*
* This does not clear regular website passwords; it only clears the HTTP
* authentication cache. Websites which use HTTP authentication require the
@@ -409,26 +409,6 @@ ephy_embed_single_get_network_status (EphyEmbedSingle *single)
}
/**
- * ephy_embed_single_get_font_list:
- * @single: the #EphyEmbedSingle
- * @lang_group: a mozilla font language group name, or %NULL
- *
- * Returns the list of fonts matching @lang_group, or all fonts if @lang_group
- * is %NULL.
- *
- * The available @lang_group arguments are listed in Epiphany's Fonts and Colors
- * preferences.
- *
- * Return value: a list of font names
- **/
-GList *
-ephy_embed_single_get_font_list (EphyEmbedSingle *single,
- const char *lang_group)
-{
- return NULL;
-}
-
-/**
* ephy_embed_single_open_window:
* @single: the #EphyEmbedSingle
* @parent: the requested window's parent #EphyEmbed
diff --git a/embed/ephy-embed-single.h b/embed/ephy-embed-single.h
index c933cea01..ad7a1d93d 100644
--- a/embed/ephy-embed-single.h
+++ b/embed/ephy-embed-single.h
@@ -91,9 +91,6 @@ void ephy_embed_single_set_network_status (EphyEmbedSingle *single,
gboolean ephy_embed_single_get_network_status (EphyEmbedSingle *single);
-GList * ephy_embed_single_get_font_list (EphyEmbedSingle *single,
- const char *lang_group);
-
G_END_DECLS
#endif