aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2004-02-11 23:48:33 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2004-02-11 23:48:33 +0800
commit6ffa823dbba4a41c83f30776267b133ccc48fa94 (patch)
treeeb7dcc91c9a96abf91fdb226d58535698697a246
parent1e23dc1c811a619678c6b2f8876a8c30066b7654 (diff)
downloadgsoc2013-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--ChangeLog10
-rw-r--r--lib/widgets/ephy-location-entry.c6
-rw-r--r--src/bookmarks/ephy-bookmarks.c2
3 files changed, 14 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 65bbb1af3..b56db86fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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