316
316
for(gint i = 0; repo_list[i] != NULL; i++)
319
319
gchar *str = repo_list[i];
320
320
repo_t *repo = g_new0(repo_t, 1);
324
324
repo->name = g_strdup(array[0]);
325
325
repo->uri = g_strdup(array[1]);
326
326
repo->dir = g_strdup(array[2]);
327
327
repo->inverted_zoom = (atoi(g_strdup(array[3])) == 1) ? TRUE : FALSE;
329
329
global_repo_list = g_slist_append(global_repo_list, repo);
344
344
GPtrArray *setting_list = NULL;
345
345
gboolean success = FALSE;
349
349
setting_list = g_ptr_array_new ();
351
351
for(list = global_repo_list; list != NULL; list = list->next)
361
361
repo->name, repo->uri, repo->dir, repo->inverted_zoom);