From 9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 10 Nov 2003 13:24:21 +0000 Subject: Fix compile warning. 2003-11-10 Marco Pesenti Gritti * 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 --- ChangeLog | 10 ++++++++++ src/ephy-completion-model.c | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cebf68c68..c801b7052 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2003-11-10 Marco Pesenti Gritti + + * 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 * embed/mozilla/mozilla-embed.cpp: 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: -- cgit v1.2.3