2
0
Fork 0

actions.h fix

This commit is contained in:
Thomas Porzelt 2008-06-29 13:55:11 +02:00
parent 586ac096f4
commit 6822fc7d24
1 changed files with 12 additions and 1 deletions

View File

@ -29,8 +29,19 @@ struct action
union
{
option param;
struct
{
option_mark opt;
option newvalue;
} setting;
condition cond;
struct
{
action_func* func;
gpointer param;
} actionfunc;
} value;
action* next;