aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-fs-gtk_publish-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-fs-gtk_publish-dialog.c')
-rw-r--r--src/fs/gnunet-fs-gtk_publish-dialog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/gnunet-fs-gtk_publish-dialog.c b/src/fs/gnunet-fs-gtk_publish-dialog.c
index c57ab9d8..4f33fc62 100644
--- a/src/fs/gnunet-fs-gtk_publish-dialog.c
+++ b/src/fs/gnunet-fs-gtk_publish-dialog.c
@@ -904,7 +904,7 @@ GNUNET_FS_GTK_progress_dialog_cancel_button_clicked_cb (GtkButton *button,
904 * @param widget the widget emitting the event 904 * @param widget the widget emitting the event
905 * @param event the event 905 * @param event the event
906 * @param user_data progress dialog context of our window 906 * @param user_data progress dialog context of our window
907 * @return FALSE to refuse to close 907 * @return TRUE to refuse to close
908 */ 908 */
909gboolean 909gboolean
910GNUNET_FS_GTK_progress_dialog_delete_event_cb (GtkWidget *widget, 910GNUNET_FS_GTK_progress_dialog_delete_event_cb (GtkWidget *widget,
@@ -912,7 +912,7 @@ GNUNET_FS_GTK_progress_dialog_delete_event_cb (GtkWidget *widget,
912 void *cls) 912 void *cls)
913{ 913{
914 /* Don't allow GTK to kill the window, until the scan is finished */ 914 /* Don't allow GTK to kill the window, until the scan is finished */
915 return FALSE; 915 return TRUE;
916} 916}
917 917
918 918
@@ -1982,7 +1982,7 @@ GNUNET_GTK_main_menu_file_publish_activate_cb (GtkWidget * dummy, gpointer user_
1982 ctx->pseudonym_selection = gtk_tree_view_get_selection (pseudonym_treeview); 1982 ctx->pseudonym_selection = gtk_tree_view_get_selection (pseudonym_treeview);
1983 ctx->pseudonym_treemodel = gtk_tree_view_get_model (pseudonym_treeview); 1983 ctx->pseudonym_treemodel = gtk_tree_view_get_model (pseudonym_treeview);
1984 1984
1985 /* connect signals; FIXME-UNCLEAN: these could be connected with (modern) Glade */ 1985 /* connect signals; FIXME-GTK3: these could be connected with (modern) Glade */
1986 g_signal_connect (G_OBJECT (ctx->file_info_selection), "changed", 1986 g_signal_connect (G_OBJECT (ctx->file_info_selection), "changed",
1987 G_CALLBACK (selection_changed_cb), ctx); 1987 G_CALLBACK (selection_changed_cb), ctx);
1988 g_signal_connect (G_OBJECT (ctx->pseudonym_selection), "changed", 1988 g_signal_connect (G_OBJECT (ctx->pseudonym_selection), "changed",