| 43 char * name; /* The name of the action */ |
43 char * name; /* The name of the action */ |
| 44 GList * params; /* The list of paramaters */ |
44 GList * params; /* The list of paramaters */ |
| 45 } rebind_info; |
45 } rebind_info; |
| 46 |
46 |
| 47 static void |
47 static void |
| 48 gnt_bindable_free_rebind_info() |
48 gnt_bindable_free_rebind_info(void) |
| 49 { |
49 { |
| 50 g_free(rebind_info.name); |
50 g_free(rebind_info.name); |
| 51 g_free(rebind_info.keys); |
51 g_free(rebind_info.keys); |
| 52 g_free(rebind_info.okeys); |
52 g_free(rebind_info.okeys); |
| 53 } |
53 } |