aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-05-16 23:16:28 +0000
committerChristian Grothoff <christian@grothoff.org>2012-05-16 23:16:28 +0000
commitd69f8d814af6136060e5d64690d710b719594ab6 (patch)
treef5b6bd8d6a46d69958dc9d8536202c53a90f0d82
parentcdab877930077ba0731a74a0f8b88f83b644132e (diff)
downloadgnunet-gtk-d69f8d814af6136060e5d64690d710b719594ab6.tar.gz
gnunet-gtk-d69f8d814af6136060e5d64690d710b719594ab6.zip
-missing comma, #2352 gtk_tree_store_set not terminated by -1 issue
-rw-r--r--src/fs/gnunet-fs-gtk_event-handler.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fs/gnunet-fs-gtk_event-handler.c b/src/fs/gnunet-fs-gtk_event-handler.c
index be5c3ba7..6fef28d1 100644
--- a/src/fs/gnunet-fs-gtk_event-handler.c
+++ b/src/fs/gnunet-fs-gtk_event-handler.c
@@ -1811,7 +1811,7 @@ GNUNET_GTK_add_search_result (struct SearchTab *tab,
1811 SEARCH_TAB_MC_AVAILABILITY_RANK, 0, 1811 SEARCH_TAB_MC_AVAILABILITY_RANK, 0,
1812 SEARCH_TAB_MC_COMPLETED, (guint64) 0, 1812 SEARCH_TAB_MC_COMPLETED, (guint64) 0,
1813 SEARCH_TAB_MC_DOWNLOADED_FILENAME, NULL, 1813 SEARCH_TAB_MC_DOWNLOADED_FILENAME, NULL,
1814 SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, -1, 1814 SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, (guint) -1,
1815 -1); 1815 -1);
1816 if (pixbuf != NULL) 1816 if (pixbuf != NULL)
1817 g_object_unref (pixbuf); 1817 g_object_unref (pixbuf);
@@ -2300,8 +2300,8 @@ mark_download_error (struct DownloadEntry *de,
2300 } 2300 }
2301 gtk_tree_path_free (path); 2301 gtk_tree_path_free (path);
2302 gtk_tree_store_set (de->sr->tab->ts, &iter, 2302 gtk_tree_store_set (de->sr->tab->ts, &iter,
2303 SEARCH_TAB_MC_PERCENT_PROGRESS, 0, 2303 SEARCH_TAB_MC_PERCENT_PROGRESS, (guint) 0,
2304 SEARCH_TAB_MC_URI_AS_STRING, emsg 2304 SEARCH_TAB_MC_URI_AS_STRING, emsg,
2305 -1); 2305 -1);
2306} 2306}
2307 2307
@@ -2472,7 +2472,7 @@ setup_download (struct DownloadEntry *de, struct DownloadEntry *pde,
2472 SEARCH_TAB_MC_FILENAME, filename, 2472 SEARCH_TAB_MC_FILENAME, filename,
2473 SEARCH_TAB_MC_STATUS_COLOUR, "blue", 2473 SEARCH_TAB_MC_STATUS_COLOUR, "blue",
2474 SEARCH_TAB_MC_SEARCH_RESULT, de->sr, 2474 SEARCH_TAB_MC_SEARCH_RESULT, de->sr,
2475 SEARCH_TAB_MC_COMPLETED, completed, 2475 SEARCH_TAB_MC_COMPLETED, (guint64) completed,
2476 SEARCH_TAB_MC_FILENAME, de->filename, 2476 SEARCH_TAB_MC_FILENAME, de->filename,
2477 SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, de->anonymity, 2477 SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, de->anonymity,
2478 -1); 2478 -1);