aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-fs-gtk-edit_publish_dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/gnunet-fs-gtk-edit_publish_dialog.c')
-rw-r--r--src/fs/gnunet-fs-gtk-edit_publish_dialog.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/fs/gnunet-fs-gtk-edit_publish_dialog.c b/src/fs/gnunet-fs-gtk-edit_publish_dialog.c
index 80336aed..9106cde1 100644
--- a/src/fs/gnunet-fs-gtk-edit_publish_dialog.c
+++ b/src/fs/gnunet-fs-gtk-edit_publish_dialog.c
@@ -902,6 +902,20 @@ GNUNET_GTK_edit_publication_confirm_button_clicked_cb (GtkButton *button, gpoint
902 gtk_widget_hide (GTK_WIDGET (pubwindow)); 902 gtk_widget_hide (GTK_WIDGET (pubwindow));
903} 903}
904 904
905gboolean
906GNUNET_GTK_edit_publication_window_delete_event_cb (GtkWidget *widget,
907 GdkEvent *event, gpointer user_data)
908{
909 GtkBuilder *builder;
910 GtkButton *button;
911 builder = GTK_BUILDER (user_data);
912
913 button = GTK_BUTTON (gtk_builder_get_object (builder,
914 "GNUNET_GTK_edit_publication_cancel_button"));
915
916 GNUNET_GTK_edit_publication_cancel_button_clicked_cb (button, user_data);
917 return TRUE;
918}
905 919
906/** 920/**
907 * Add each of the keywords to the keyword list store. 921 * Add each of the keywords to the keyword list store.