summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-08-10 20:50:27 +0300
committerClaudio Saavedra <csaavedra@igalia.com>2012-08-10 20:50:42 +0300
commit4a8c4ef22758bb0fc80fc64df29d2732890550f7 (patch)
tree3cee9cf2018601ce6978a5348c71761c8dc0c7fe
parentcb1e625aefe0e5342f2237daf70538b8e7bd50b9 (diff)
downloadepiphany-4a8c4ef22758bb0fc80fc64df29d2732890550f7.tar.gz
ephy-frecent-store: Use -1 instead of G_MAXINT when appending items to the store
-rw-r--r--src/ephy-frecent-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-frecent-store.c b/src/ephy-frecent-store.c
index bf7208a74..14e26f47b 100644
--- a/src/ephy-frecent-store.c
+++ b/src/ephy-frecent-store.c
@@ -65,7 +65,7 @@ on_find_urls_cb (EphyHistoryService *service,
&treeiter);
}
} else {
- gtk_list_store_insert_with_values (GTK_LIST_STORE (store), &treeiter, G_MAXINT,
+ gtk_list_store_insert_with_values (GTK_LIST_STORE (store), &treeiter, -1,
EPHY_OVERVIEW_STORE_TITLE, url->title,
EPHY_OVERVIEW_STORE_URI, url->url,
EPHY_OVERVIEW_STORE_LAST_VISIT, url->last_visit_time,