gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r21539 - gnunet-gtk/src/fs


From: gnunet
Subject: [GNUnet-SVN] r21539 - gnunet-gtk/src/fs
Date: Thu, 17 May 2012 01:16:28 +0200

Author: grothoff
Date: 2012-05-17 01:16:28 +0200 (Thu, 17 May 2012)
New Revision: 21539

Modified:
   gnunet-gtk/src/fs/gnunet-fs-gtk_event-handler.c
Log:
-missing comma, #2352 gtk_tree_store_set not terminated by -1 issue

Modified: gnunet-gtk/src/fs/gnunet-fs-gtk_event-handler.c
===================================================================
--- gnunet-gtk/src/fs/gnunet-fs-gtk_event-handler.c     2012-05-16 23:15:34 UTC 
(rev 21538)
+++ gnunet-gtk/src/fs/gnunet-fs-gtk_event-handler.c     2012-05-16 23:16:28 UTC 
(rev 21539)
@@ -1811,7 +1811,7 @@
                                      SEARCH_TAB_MC_AVAILABILITY_RANK, 0,
                                      SEARCH_TAB_MC_COMPLETED, (guint64) 0,
                                      SEARCH_TAB_MC_DOWNLOADED_FILENAME, NULL,
-                                     SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, -1,
+                                     SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, 
(guint) -1,
                                      -1);
   if (pixbuf != NULL)
     g_object_unref (pixbuf);
@@ -2300,8 +2300,8 @@
   }
   gtk_tree_path_free (path);
   gtk_tree_store_set (de->sr->tab->ts, &iter,
-                      SEARCH_TAB_MC_PERCENT_PROGRESS, 0,
-                      SEARCH_TAB_MC_URI_AS_STRING, emsg
+                      SEARCH_TAB_MC_PERCENT_PROGRESS, (guint) 0,
+                      SEARCH_TAB_MC_URI_AS_STRING, emsg,
                       -1);
 }
 
@@ -2472,7 +2472,7 @@
                       SEARCH_TAB_MC_FILENAME, filename,
                       SEARCH_TAB_MC_STATUS_COLOUR, "blue",
                       SEARCH_TAB_MC_SEARCH_RESULT, de->sr, 
-                      SEARCH_TAB_MC_COMPLETED, completed,
+                      SEARCH_TAB_MC_COMPLETED, (guint64) completed,
                       SEARCH_TAB_MC_FILENAME, de->filename,
                       SEARCH_TAB_MC_DOWNLOADED_ANONYMITY, de->anonymity,
                       -1);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]