gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r21317 - gnunet-gtk/src/gns


From: gnunet
Subject: [GNUnet-SVN] r21317 - gnunet-gtk/src/gns
Date: Mon, 7 May 2012 10:42:38 +0200

Author: grothoff
Date: 2012-05-07 10:42:38 +0200 (Mon, 07 May 2012)
New Revision: 21317

Modified:
   gnunet-gtk/src/gns/gnunet-gns-gtk_zone.c
Log:
-cleanup

Modified: gnunet-gtk/src/gns/gnunet-gns-gtk_zone.c
===================================================================
--- gnunet-gtk/src/gns/gnunet-gns-gtk_zone.c    2012-05-07 08:40:43 UTC (rev 
21316)
+++ gnunet-gtk/src/gns/gnunet-gns-gtk_zone.c    2012-05-07 08:42:38 UTC (rev 
21317)
@@ -837,7 +837,7 @@
   int not_dummy;
 
   ts = gtk_tree_view_get_selection(gns->tv);
-  if (FALSE == gtk_tree_selection_get_selected (ts, &tm, &it))
+  if (! gtk_tree_selection_get_selected (ts, &tm, &it))
     return TRUE;
   gtk_tree_model_get(gns->tm, &it, TREE_COL_NOT_DUMMY_ROW, &not_dummy, -1);
   if (GNUNET_NO == not_dummy)
@@ -862,7 +862,7 @@
   char *path;
   int not_dummy;
 
-  if (FALSE == gtk_tree_selection_get_selected (ts, &tm, &it))
+  if (! gtk_tree_selection_get_selected (ts, &tm, &it))
     return;
 
   gtk_tree_model_get(tm, &it, TREE_COL_NOT_DUMMY_ROW, &not_dummy, -1);
@@ -962,7 +962,7 @@
   char *path;
 
   ts = gtk_tree_view_get_selection(gns->tv);
-  if (TRUE == gtk_tree_selection_get_selected (ts, &tm, &it))
+  if (gtk_tree_selection_get_selected (ts, &tm, &it))
   {
     gtk_tree_model_get(tm, &it, TREE_COL_NOT_DUMMY_ROW, &not_dummy, -1);
     if (GNUNET_NO == not_dummy)




reply via email to

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