aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/source/modmeth.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-03-05 04:40:52 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-03-05 04:40:52 +0000
commit4215d864c0baf21a4f67ed3fe44e642b84708197 (patch)
tree73adca0e1fd7fd30a0a1977e88fd14b3233b5cbb /externals/grill/py/source/modmeth.cpp
parent69f7f0c33559cf90e7d6ce7c0ddbd5501af7b1de (diff)
""
svn path=/trunk/; revision=453
Diffstat (limited to 'externals/grill/py/source/modmeth.cpp')
-rw-r--r--externals/grill/py/source/modmeth.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/externals/grill/py/source/modmeth.cpp b/externals/grill/py/source/modmeth.cpp
index 3d5c0a1d..83e8a7b6 100644
--- a/externals/grill/py/source/modmeth.cpp
+++ b/externals/grill/py/source/modmeth.cpp
@@ -142,18 +142,11 @@ PyObject *py::py_send(PyObject *,PyObject *args)
AtomList *lst = GetPyArgs(val);
if(lst) {
-// t_class **cl = (t_class **)GetBound(recv);
- t_class **cl = (t_class **)recv->s_thing;
- if(cl) {
-#if FLEXT_SYS == FLEXT_SYS_PD
- pd_forwardmess(cl,lst->Count(),lst->Atoms());
-#else
-#pragma message ("Send is not implemented")
-#endif
- }
+ if(!Forward(recv,*lst))
#ifdef FLEXT_DEBUG
- else
post("py/pyext - Receiver doesn't exist");
+#else
+ {}
#endif
}
else