diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-02 05:19:17 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-09-02 05:19:17 +0000 |
commit | a2b76c71f48393a78f43606f2bbc34727901f2dd (patch) | |
tree | 5eb3e2a78f1d72256a77b3fa2d4324feb1b33787 /pianoroll | |
parent | b06d166030d3b24c432bcc0c1f4357dfc98db4e2 (diff) |
added #if's and minor tweaks to make things compile with pd 0.37
svn path=/trunk/externals/unauthorized/; revision=929
Diffstat (limited to 'pianoroll')
-rw-r--r-- | pianoroll/pianoroll.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pianoroll/pianoroll.c b/pianoroll/pianoroll.c index b005017..6b8304d 100644 --- a/pianoroll/pianoroll.c +++ b/pianoroll/pianoroll.c @@ -800,8 +800,14 @@ void pianoroll_setup(void) pianoroll_widgetbehavior.w_deletefn = pianoroll_delete; pianoroll_widgetbehavior.w_visfn = pianoroll_vis; pianoroll_widgetbehavior.w_clickfn = pianoroll_click; + /* As of 0.37, the last two elements of t_widgetbehavoir */ + /* have been removed. <hans@eds.org> */ +#if PD_MAJOR_VERSION == 0 +#if PD_MINOR_VERSION < 37 || !defined(PD_MINOR_VERSION) pianoroll_widgetbehavior.w_propertiesfn = pianoroll_properties; pianoroll_widgetbehavior.w_savefn = pianoroll_save; +#endif +#endif class_setwidget(pianoroll_class, &pianoroll_widgetbehavior); class_sethelpsymbol(pianoroll_class, gensym("help-pianoroll.pd")); } |