diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-02-11 01:59:45 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-02-11 01:59:45 +0800 |
commit | 787631de022b3ae288a8fabfa1b5055100a610e3 (patch) | |
tree | 5381def4d085bf233446eec4d3f064b36f3a152c | |
parent | e1886a523868e98b8a1dfe2192cd4f15760f864d (diff) | |
download | gsoc2013-epiphany-787631de022b3ae288a8fabfa1b5055100a610e3.tar.gz gsoc2013-epiphany-787631de022b3ae288a8fabfa1b5055100a610e3.tar.zst gsoc2013-epiphany-787631de022b3ae288a8fabfa1b5055100a610e3.zip |
Show the title of the bookmark, not the address
2004-02-10 Marco Pesenti Gritti <marco@gnome.org>
* src/ephy-completion-model.c: (init_text_col):
Show the title of the bookmark, not the address
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-completion-model.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-02-10 Marco Pesenti Gritti <marco@gnome.org> + + * src/ephy-completion-model.c: (init_text_col): + + Show the title of the bookmark, not the address + 2004-02-09 Christian Persch <chpe@cvs.gnome.org> * src/ephy-tab.c: (clipboard_text_received_cb), diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c index 651afe882..3f840d43d 100644 --- a/src/ephy-completion-model.c +++ b/src/ephy-completion-model.c @@ -289,7 +289,7 @@ init_text_col (GValue *value, EphyNode *node, int group) { case BOOKMARKS_GROUP: text = ephy_node_get_property_string - (node, EPHY_NODE_BMK_PROP_LOCATION); + (node, EPHY_NODE_BMK_PROP_TITLE); break; case HISTORY_GROUP: text = ephy_node_get_property_string |