mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-10-10 10:23:40 +00:00
16 lines
229 B
C
16 lines
229 B
C
|
#include <gtk/gtk.h>
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
* save_changes()
|
||
|
*
|
||
|
* Save Changes from the menu.
|
||
|
*
|
||
|
*/
|
||
|
void save_changes(GtkWidget *widget, gpointer data)
|
||
|
{
|
||
|
/* --- Display message --- */
|
||
|
g_print("Save Changes function goes here.\n");
|
||
|
}
|
||
|
|