diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-21 22:37:36 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-21 22:37:36 +0000 |
commit | 99b0b62ca25ec04b1629691a3644fdc513a52924 (patch) | |
tree | 688d0ac3575d19d7c9033f66c29e9cbc53cb5601 /src/paramCustom.c | |
parent | 4d1507c165853e01072fa166ccd36842d3574822 (diff) |
Replaced paramGui abstraction by a class
svn path=/trunk/externals/tof/; revision=12629
Diffstat (limited to 'src/paramCustom.c')
-rw-r--r-- | src/paramCustom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/paramCustom.c b/src/paramCustom.c index 9b23461..8be3360 100644 --- a/src/paramCustom.c +++ b/src/paramCustom.c @@ -138,10 +138,11 @@ static void* paramCustom_new(t_symbol *s, int ac, t_atom *av) x->nopresets = tof_find_tag('/',gensym("/nps"), ac-1, av+1); - + x->param = param_register(x,root,path,\ NULL,\ (t_paramSaveMethod) paramCustom_save,\ + NULL,\ NULL); if (!x->param) return NULL; |