diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | src/ephy-completion-model.c | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,15 @@ 2003-11-10 Marco Pesenti Gritti <marco@gnome.org> + * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load): + + Fix compile warning. + + * src/ephy-completion-model.c: (init_text_col): + + Correct TEXT column get_value + +2003-11-10 Marco Pesenti Gritti <marco@gnome.org> + * embed/mozilla/mozilla-embed.cpp: Remove a decl I forgot. diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c index f407bb45b..b8f75bce6 100644 --- a/src/ephy-completion-model.c +++ b/src/ephy-completion-model.c @@ -289,11 +289,11 @@ init_text_col (GValue *value, EphyNode *node, int group) { case BOOKMARKS_GROUP: text = ephy_node_get_property_string - (node, EPHY_NODE_PAGE_PROP_TITLE); + (node, EPHY_NODE_BMK_PROP_LOCATION); break; case HISTORY_GROUP: text = ephy_node_get_property_string - (node, EPHY_NODE_BMK_PROP_LOCATION); + (node, EPHY_NODE_PAGE_PROP_LOCATION); break; default: |