aboutsummaryrefslogtreecommitdiff
path: root/sonogram~
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-29 18:58:45 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-29 18:58:45 +0000
commit88923be907188c31e4bcab5e2d9fcfa5754a8bfb (patch)
tree320735477eda59c95a0ba2e8c3b7c14e01004630 /sonogram~
parentde0a11880fc40b58372eb63cf6cf243aa685157a (diff)
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html I have changed the save functions so that they will save the name of the object that it was actually instantiated with. This allows objects with savefns to work properly with namespaces. This is a fix for this bug: http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=478070 svn path=/trunk/externals/unauthorized/; revision=8902
Diffstat (limited to 'sonogram~')
-rw-r--r--sonogram~/sonogram~-joge.c3
-rw-r--r--sonogram~/sonogram~-yves.c3
-rw-r--r--sonogram~/sonogram~.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/sonogram~/sonogram~-joge.c b/sonogram~/sonogram~-joge.c
index 62a23c3..b7e93bc 100644
--- a/sonogram~/sonogram~-joge.c
+++ b/sonogram~/sonogram~-joge.c
@@ -868,7 +868,8 @@ static void sonogram_save(t_gobj *z, t_binbuf *b)
binbuf_addv(b, "ssiisiii", gensym("#X"),gensym("obj"),
(t_int)x->x_xpos, (t_int)x->x_ypos,
- gensym("sonogram~"), x->x_size, x->x_graphic, x->x_phaso );
+ atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
+ x->x_size, x->x_graphic, x->x_phaso );
binbuf_addv(b, ";");
}
diff --git a/sonogram~/sonogram~-yves.c b/sonogram~/sonogram~-yves.c
index d45bf9e..161ebf2 100644
--- a/sonogram~/sonogram~-yves.c
+++ b/sonogram~/sonogram~-yves.c
@@ -849,7 +849,8 @@ static void sonogram_save(t_gobj *z, t_binbuf *b)
binbuf_addv(b, "ssiisiii", gensym("#X"),gensym("obj"),
(t_int)x->x_xpos, (t_int)x->x_ypos,
- gensym("sonogram~"), x->x_size, x->x_graphic, x->x_phaso );
+ atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
+ x->x_size, x->x_graphic, x->x_phaso );
binbuf_addv(b, ";");
}
diff --git a/sonogram~/sonogram~.c b/sonogram~/sonogram~.c
index e6c3887..92850a9 100644
--- a/sonogram~/sonogram~.c
+++ b/sonogram~/sonogram~.c
@@ -851,7 +851,8 @@ static void sonogram_save(t_gobj *z, t_binbuf *b)
binbuf_addv(b, "ssiisiii", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
- gensym("sonogram~"), x->x_size, x->x_graphic, x->x_phaso );
+ atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
+ x->x_size, x->x_graphic, x->x_phaso );
binbuf_addv(b, ";");
}