calvados/closing_dialog.c

17 lines
257 B
C
Raw Permalink Normal View History

2017-03-14 04:04:47 +00:00
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
/*
*
* closing_dialog
*
* Calls when window is about to close. returns FALSE
* to let it close.
*
*/
void closing_dialog(GtkWidget *widget, gpointer data)
{
2017-04-18 19:15:24 +00:00
gtk_grab_remove(GTK_WIDGET(widget));
2017-03-14 04:04:47 +00:00
}