aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-notebook.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 99498b049..0344b2671 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2004-11-14 Christian Persch <chpe@cvs.gnome.org>
+ * src/ephy-notebook.c: (build_tab_label):
+
+ Remove unused variable.
+
+2004-11-14 Christian Persch <chpe@cvs.gnome.org>
+
* COPYING:
Remove notice about tab-loading.gif since we don't have that anymore.
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 7157648b7..d57094ddf 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -823,12 +823,10 @@ tab_label_style_set_cb (GtkWidget *label,
static GtkWidget *
build_tab_label (EphyNotebook *nb, EphyTab *tab)
{
- GtkWidget *window, *hbox, *label_hbox, *label_ebox;
+ GtkWidget *hbox, *label_hbox, *label_ebox;
GtkWidget *label, *close_button, *image, *spinner, *icon;
GtkIconSize close_icon_size;
- window = gtk_widget_get_toplevel (GTK_WIDGET (nb));
-
/* set hbox spacing and label padding (see below) so that there's an
* equal amount of space around the label */
hbox = gtk_hbox_new (FALSE, 4);