diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-09-28 21:36:49 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-09-28 21:36:49 +0800 |
commit | 6f7fc09fe96eaad7a5d2c3563bdc45000cb88573 (patch) | |
tree | f51f28a8563be3d2481e905a0123788000dc6452 /src/ephy-notebook.c | |
parent | 135b0e0d1f8dc462f7e5d9450609685352667186 (diff) | |
download | gsoc2013-epiphany-6f7fc09fe96eaad7a5d2c3563bdc45000cb88573.tar.gz gsoc2013-epiphany-6f7fc09fe96eaad7a5d2c3563bdc45000cb88573.tar.zst gsoc2013-epiphany-6f7fc09fe96eaad7a5d2c3563bdc45000cb88573.zip |
Add a function to get the tab's real title, and use it where appropriate.
2005-09-28 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-notebook.c: (sync_label):
* src/ephy-tab.c: (ephy_tab_get_title_composite),
(ephy_tab_get_title):
* src/ephy-tab.h:
* src/ephy-tabs-menu.c: (sync_tab_title):
* src/ephy-window.c: (sync_tab_title):
* src/window-commands.c: (window_cmd_file_send_to),
(window_cmd_file_bookmark_page):
Add a function to get the tab's real title, and use it
where appropriate. Fixes bug #317418.
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r-- | src/ephy-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 55e458b5a..fd4d41208 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -1011,7 +1011,7 @@ sync_label (EphyTab *tab, GParamSpec *pspec, GtkWidget *proxy) g_return_if_fail (ebox != NULL && tips != NULL && label != NULL); - title = ephy_tab_get_title (tab); + title = ephy_tab_get_title_composite (tab); if (title) { |