diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-02-11 23:48:33 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-02-11 23:48:33 +0800 |
commit | 6ffa823dbba4a41c83f30776267b133ccc48fa94 (patch) | |
tree | eb7dcc91c9a96abf91fdb226d58535698697a246 /lib/widgets | |
parent | 1e23dc1c811a619678c6b2f8876a8c30066b7654 (diff) | |
download | gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.gz gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.bz2 gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.lz gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.xz gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.zst gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.zip |
Cleanup
2004-02-11 Marco Pesenti Gritti <marco@gnome.org>
* lib/widgets/ephy-location-entry.c: (completion_func):
Cleanup
* src/bookmarks/ephy-bookmarks.c:
Increase format version
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index cee04febb..61fc47c40 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -243,9 +243,9 @@ completion_func (GtkEntryCompletion *completion, model = gtk_entry_completion_get_model (completion); gtk_tree_model_get (model, iter, - le->priv->text_col, &item, -1); - gtk_tree_model_get (model, iter, - le->priv->keywords_col, &keywords, -1); + le->priv->text_col, &item, + le->priv->keywords_col, &keywords, + -1); if (!strncmp (key, item, strlen (key))) { |