diff options
-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 |