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 | |
parent | 1e23dc1c811a619678c6b2f8876a8c30066b7654 (diff) | |
download | gsoc2013-epiphany-6ffa823dbba4a41c83f30776267b133ccc48fa94.tar.gz 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
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 2 |
3 files changed, 14 insertions, 4 deletions
@@ -1,5 +1,15 @@ 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 + +2004-02-11 Marco Pesenti Gritti <marco@gnome.org> + * lib/widgets/ephy-location-entry.c: (keyword_match), (completion_func): 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))) { diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 4b460a577..5d8c489be 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -42,7 +42,7 @@ #include <libgnomevfs/gnome-vfs-utils.h> #define EPHY_BOOKMARKS_XML_ROOT "ephy_bookmarks" -#define EPHY_BOOKMARKS_XML_VERSION "1.01" +#define EPHY_BOOKMARKS_XML_VERSION "1.02" #define BOOKMARKS_SAVE_DELAY (3 * 1000) #define MAX_FAVORITES_NUM 10 |