diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-10 21:24:21 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-10 21:24:21 +0800 |
commit | 9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d (patch) | |
tree | 4e0bf8cc7c86fdc3aa6bc648013c996782d98e41 | |
parent | 309314a3645910f365dd51807f47c04e1567b5fe (diff) | |
download | gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar.gz gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar.bz2 gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar.lz gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar.xz gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.tar.zst gsoc2013-epiphany-9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d.zip |
Fix compile warning.
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
-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: |