mirror of
https://github.com/softwarejanitor/calvados.git
synced 2024-12-08 01:49:16 +00:00
18 lines
248 B
C
18 lines
248 B
C
#include <gtk/gtk.h>
|
|
|
|
#include "calvados.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");
|
|
}
|
|
|