diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-06-17 01:30:59 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-06-17 01:30:59 +0800 |
commit | e88868f155e690b5cbcf88f3b50e75e1345dc059 (patch) | |
tree | cadf8ae8383de049ca5822856011b273e32e9a40 | |
parent | e107b8c04820a45b8b4daca62e767cdfd8e62e23 (diff) | |
download | gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar.gz gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar.bz2 gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar.lz gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar.xz gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.tar.zst gsoc2013-epiphany-e88868f155e690b5cbcf88f3b50e75e1345dc059.zip |
Set data for close-button on the tab label.
2004-06-16 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (build_tab_label):
Set data for close-button on the tab label.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-notebook.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2004-06-16 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-notebook.c: (build_tab_label): + + Set data for close-button on the tab label. + +2004-06-16 Christian Persch <chpe@cvs.gnome.org> + * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_disconnect_model), (egg_editable_toolbar_deconstruct), diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 05412a11b..eca8adc84 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -965,6 +965,7 @@ build_tab_label (EphyNotebook *nb, EphyTab *tab) g_object_set_data (G_OBJECT (hbox), "label-ebox", label_ebox); g_object_set_data (G_OBJECT (hbox), "loading-image", loading_image); g_object_set_data (G_OBJECT (hbox), "icon", icon); + g_object_set_data (G_OBJECT (hbox), "close-button", close_button); g_object_set_data (G_OBJECT (hbox), "tooltips", nb->priv->title_tips); return hbox; |