diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-13 20:29:55 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-13 20:29:55 +0800 |
commit | 9ff4f5f92f9db92f4b420430d6368feabc26490b (patch) | |
tree | 9224b4c3a19865803a6184413239d6f99f7467cc /src/ephy-navigation-button.c | |
parent | 225e05938a6bff23249516da4d277d7d742e2283 (diff) | |
download | gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.gz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.bz2 gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.lz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.xz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.zst gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.zip |
Use favicons in bookmarks. Use titles for session history when possible.
2003-01-13 Marco Pesenti Gritti <marco@it.gnome.org>
* TODO:
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_get):
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmarks_editor_construct):
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_set_icon):
* src/bookmarks/ephy-bookmarks.h:
* src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_finalize),
(ephy_new_bookmark_add), (ephy_new_bookmark_init),
(ephy_new_bookmark_set_smarturl), (ephy_new_bookmark_set_icon):
* src/bookmarks/ephy-new-bookmark.h:
* src/bookmarks/ephy-node-view.c: (ephy_node_view_add_column),
(ephy_node_view_add_icon_column):
* src/bookmarks/ephy-node-view.h:
* src/bookmarks/ephy-tree-model-node.c:
(ephy_tree_model_node_get_column_type), (get_icon_pixbuf),
(ephy_tree_model_node_get_value),
(ephy_tree_model_node_column_get_type):
* src/bookmarks/ephy-tree-model-node.h:
* src/ephy-history-model.c: (ephy_history_model_get_value):
* src/ephy-navigation-button.c: (setup_back_or_forward_menu):
* src/ephy-tab.c: (ephy_tab_favicon_cb):
* src/window-commands.c: (window_cmd_bookmarks_add_default):
Use favicons in bookmarks.
Use titles for session history when possible.
Diffstat (limited to 'src/ephy-navigation-button.c')
-rw-r--r-- | src/ephy-navigation-button.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-navigation-button.c b/src/ephy-navigation-button.c index a10b3a942..d0d80af7f 100644 --- a/src/ephy-navigation-button.c +++ b/src/ephy-navigation-button.c @@ -91,7 +91,7 @@ ephy_navigation_button_class_init (EphyNavigationButtonClass *klass) ephy_tb_item_class = g_type_class_peek_parent (klass); } -static void +static void ephy_navigation_button_init (EphyNavigationButton *tbi) { EphyNavigationButtonPrivate *p = g_new0 (EphyNavigationButtonPrivate, 1); @@ -528,7 +528,7 @@ setup_back_or_forward_menu (EphyWindow *window, GtkMenuShell *ms, EphyNavigation char *title, *url; GtkWidget *item; ephy_embed_shistory_get_nth (embed, start, FALSE, &url, &title); - item = new_history_menu_item (url, NULL); + item = new_history_menu_item (title ? title : url, NULL); gtk_menu_shell_append (ms, item); g_object_set_data (G_OBJECT (item), "go_nth", GINT_TO_POINTER (start)); g_signal_connect (item, "activate", |