Remove the acclerator mask
[mim] / src / mim / gconf-change-cb.c
1 #include "gconf-change-cb.h"
2 /* This is called when our gconf key is changed. */
3 void
4 gconf_notify_func (GConfClient *client,
5                     guint        cnxn_id,
6                     GConfEntry  *entry,
7                     gpointer     user_data)
8 {
9         GConfValue *value;
10         gboolean    checked;
11  
12         value = gconf_entry_get_value (entry);
13  
14         checked = gconf_value_get_bool (value);
15 }