summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-10-16 22:04:29 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-10-16 22:04:29 (GMT)
commit6d34dbbb00da0c276261d0e1ce4bf862f22fd8e0 (patch)
treea5d3c8644691934ba84a91919f7db177f70743f1 /src/core
parente75f44a99c8f984af4c47fa9a2c8e7e9841700d8 (diff)
Stored a bookmark into the data base and saved the archive.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@414 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/core')
-rw-r--r--src/core/collections.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/collections.c b/src/core/collections.c
index 860b7f6..80d2ae3 100644
--- a/src/core/collections.c
+++ b/src/core/collections.c
@@ -164,7 +164,7 @@ GList *create_collections_list(void)
for (i = 0; i < _collection_definitions_count; i++)
{
def = &_collection_definitions[i];
- collec = g_db_collection_new(i, def->items);
+ collec = g_db_collection_new(i, def->items, "Bookmarks");
result = g_list_append(result, collec);