aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/fs.c')
-rw-r--r--src/plugins/fs/fs.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/fs/fs.c b/src/plugins/fs/fs.c
index 015f26c5..1eda8a50 100644
--- a/src/plugins/fs/fs.c
+++ b/src/plugins/fs/fs.c
@@ -37,7 +37,7 @@
37 37
38struct GNUNET_FSUI_Context *ctx; 38struct GNUNET_FSUI_Context *ctx;
39 39
40struct GNUNET_GEContext *ectx; 40struct GNUNET_GE_Context *ectx;
41 41
42struct GNUNET_GC_Configuration *cfg; 42struct GNUNET_GC_Configuration *cfg;
43 43
@@ -99,7 +99,7 @@ on_anonymity_spin_changed_fs (GtkWidget * w, gpointer dummy)
99 spin = GTK_SPIN_BUTTON (w); 99 spin = GTK_SPIN_BUTTON (w);
100 if (spin == NULL) 100 if (spin == NULL)
101 { 101 {
102 GNUNET_GEBREAK (NULL, 0); 102 GNUNET_GE_BREAK (NULL, 0);
103 return; 103 return;
104 } 104 }
105 val = gtk_spin_button_get_value_as_int (spin); 105 val = gtk_spin_button_get_value_as_int (spin);
@@ -249,10 +249,10 @@ saveEventProcessor (void *cls)
249 break; 249 break;
250 /* TODO: unindex events */ 250 /* TODO: unindex events */
251 default: 251 default:
252 GNUNET_GEBREAK (ectx, 0); 252 GNUNET_GE_BREAK (ectx, 0);
253 GNUNET_GELOG (ectx, 253 GNUNET_GE_LOG (ectx,
254 GNUNET_GEERROR, 254 GNUNET_GE_ERROR,
255 _("Unhandled (unknown) FSUI event: %u.\n"), event->type); 255 _("Unhandled (unknown) FSUI event: %u.\n"), event->type);
256 break; 256 break;
257 } 257 }
258 return ret; 258 return ret;
@@ -367,13 +367,13 @@ on_upload_copy_uri_activate (void *cls, GtkWidget * searchEntry)
367 last_y, 367 last_y,
368 &path, NULL, NULL, NULL)) 368 &path, NULL, NULL, NULL))
369 { 369 {
370 GNUNET_GEBREAK (NULL, 0); 370 GNUNET_GE_BREAK (NULL, 0);
371 return FALSE; 371 return FALSE;
372 } 372 }
373 if (FALSE == gtk_tree_model_get_iter (GTK_TREE_MODEL (upload_summary), 373 if (FALSE == gtk_tree_model_get_iter (GTK_TREE_MODEL (upload_summary),
374 &iter, path)) 374 &iter, path))
375 { 375 {
376 GNUNET_GEBREAK (NULL, 0); 376 GNUNET_GE_BREAK (NULL, 0);
377 gtk_tree_path_free (path); 377 gtk_tree_path_free (path);
378 return FALSE; 378 return FALSE;
379 } 379 }
@@ -657,7 +657,7 @@ fs_summary_stop ()
657} 657}
658 658
659void 659void
660init_fs (struct GNUNET_GEContext *e, struct GNUNET_GC_Configuration *c) 660init_fs (struct GNUNET_GE_Context *e, struct GNUNET_GC_Configuration *c)
661{ 661{
662 GtkWidget *tab; 662 GtkWidget *tab;
663 GtkWidget *book; 663 GtkWidget *book;