aboutsummaryrefslogtreecommitdiff
path: root/pianoroll
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-09-17 17:11:34 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-09-17 17:11:34 +0000
commit606bb9189e1abd574c299ac84e738d68cefb21f2 (patch)
tree806ee0dc4d087540063d901a8f0b010ebd23b97b /pianoroll
parente9473e64c1902092d0798e97e0eadbc123c68195 (diff)
merged relevant changes from Pd-extended 0.42
svn path=/trunk/externals/unauthorized/; revision=14153
Diffstat (limited to 'pianoroll')
-rw-r--r--pianoroll/pianoroll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pianoroll/pianoroll.c b/pianoroll/pianoroll.c
index 92cf860..c71735c 100644
--- a/pianoroll/pianoroll.c
+++ b/pianoroll/pianoroll.c
@@ -390,7 +390,7 @@ static void pianoroll_dialog(t_pianoroll *x, t_symbol *s, int argc, t_atom *argv
static void pianoroll_delete(t_gobj *z, t_glist *glist)
{
- canvas_deletelinesfor( glist_getcanvas(glist), (t_text *)z);
+ canvas_deletelinesfor(glist, (t_text *)z);
}
static void pianoroll_displace(t_gobj *z, t_glist *glist, int dx, int dy)
@@ -811,5 +811,5 @@ void pianoroll_setup(void)
#endif
class_setwidget(pianoroll_class, &pianoroll_widgetbehavior);
- class_sethelpsymbol(pianoroll_class, gensym("pianoroll.pd"));
+
}