aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-07 18:09:55 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2005-06-07 18:09:55 +0000
commit62ea3a782dbcf96e973948fde14b9983089ee541 (patch)
treec4a1bca97005b1dafba45ae9d3566c2258e34305
parent51846cbec8dcfe445d7dc03d8b7cdc463d4dbc4b (diff)
fixed a bug that crashed pd when deleting a popup-in-a-gop that with inlets (of the popup) connected
svn path=/trunk/externals/bbogart/; revision=3129
-rw-r--r--popup/popup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/popup/popup.c b/popup/popup.c
index 8e7274b..cbb3dfc 100644
--- a/popup/popup.c
+++ b/popup/popup.c
@@ -311,7 +311,7 @@ static void popup_delete(t_gobj *z, t_glist *glist)
DEBUG(post("delete start");)
t_text *x = (t_text *)z;
- canvas_deletelinesfor(glist_getcanvas(glist), x);
+ canvas_deletelinesfor(glist, x);
DEBUG(post("delete end");)
}
@@ -705,7 +705,7 @@ void popup_setup(void) {
class_setsavefn(popup_class,&popup_save);
#endif
- post("Popup v0.1 Ben Bogart.\nCVS: $Revision: 1.16 $ $Date: 2005-06-07 15:07:53 $");
+ post("Popup v0.1 Ben Bogart.\nCVS: $Revision: 1.17 $ $Date: 2005-06-07 18:09:55 $");
}