diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-11-14 21:50:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-14 21:50:22 +0800 |
commit | 5d0698b956c43b701ec681865884568f9ee123b6 (patch) | |
tree | bc0ce85b51b35cde8b967337f0fd0d13b107523b | |
parent | 577de0d4fbef9869e5e865b7d2bb589619b3a4f5 (diff) | |
download | gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar.gz gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar.bz2 gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar.lz gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar.xz gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.tar.zst gsoc2013-epiphany-5d0698b956c43b701ec681865884568f9ee123b6.zip |
Remove unused variable.
2004-11-14 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (build_tab_label):
Remove unused variable.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -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); |