diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-07-30 12:22:11 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-07-30 12:22:11 +0000 |
commit | 9b39e0d94c73773d0dc4b11d9355798d941921e8 (patch) | |
tree | d9c2f3fad3974394cb184868282a8b6366c0fb8e /externals/grill/py/source/py.cpp | |
parent | 5f9f3ed9b7c2ff07d8745c81d1a085c8eaa08737 (diff) |
corrected Python object propagation (attribute "py") and adjusted help files
path setting based on new flext functionality
much better detach method handling (one thread for all object instances)
svn path=/trunk/; revision=3389
Diffstat (limited to 'externals/grill/py/source/py.cpp')
-rw-r--r-- | externals/grill/py/source/py.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/py/source/py.cpp b/externals/grill/py/source/py.cpp index caa759f2..4e1057e2 100644 --- a/externals/grill/py/source/py.cpp +++ b/externals/grill/py/source/py.cpp @@ -137,7 +137,7 @@ pyobj::pyobj(int argc,const t_atom *argv) // init script module if(argc) { - AddCurrentPath(thisCanvas()); + AddCurrentPath(this); const char *sn = GetAString(*argv); argv++,argc--; |