diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/ephy-tab.c | 5 | ||||
-rw-r--r-- | src/ephy-tab.h | 3 |
3 files changed, 12 insertions, 4 deletions
@@ -1,5 +1,13 @@ 2003-04-01 Christian Persch <chpe@stud.uni-saarland.de> + * src/ephy-tab.c: + * src/ephy-tab.h: + + Marco-is-silly-patch. Update to latest version + of the favicons patch. + +2003-04-01 Christian Persch <chpe@stud.uni-saarland.de> + * lib/widgets/ephy-notebook.c: (ephy_notebook_set_page_status), (ephy_notebook_set_page_icon), (tab_build_label): * lib/widgets/ephy-notebook.h: diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 0e7213c26..cc740f11a 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -77,6 +77,9 @@ enum }; static void +ephy_tab_set_favicon (EphyTab *tab, + GdkPixbuf *favicon); +static void ephy_tab_favicon_cb (EphyEmbed *embed, const char *url, EphyTab *tab); @@ -447,7 +450,7 @@ ephy_tab_set_visibility (EphyTab *tab, tab->priv->visibility = visible; } -void +static void ephy_tab_set_favicon (EphyTab *tab, GdkPixbuf *favicon) { diff --git a/src/ephy-tab.h b/src/ephy-tab.h index a2f162458..82f6d16a6 100644 --- a/src/ephy-tab.h +++ b/src/ephy-tab.h @@ -95,9 +95,6 @@ const char *ephy_tab_get_favicon_url (EphyTab *tab); void ephy_tab_set_location (EphyTab *tab, char *location); -void ephy_tab_set_favicon (EphyTab *tab, - GdkPixbuf *favicon); - void ephy_tab_get_size (EphyTab *tab, int *width, int *height); |