aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/grill/py/source/clmeth.cpp4
-rw-r--r--externals/grill/py/source/py.cpp2
-rw-r--r--externals/grill/py/source/pyext.cpp2
-rw-r--r--externals/grill/py/source/pyext.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/externals/grill/py/source/clmeth.cpp b/externals/grill/py/source/clmeth.cpp
index 4b403cf8..267d2da9 100644
--- a/externals/grill/py/source/clmeth.cpp
+++ b/externals/grill/py/source/clmeth.cpp
@@ -173,7 +173,7 @@ PyObject *pyext::pyext_outlet(PyObject *,PyObject *args)
if(!tp)
val = PySequence_GetSlice(args,2,sz); // new ref
- AtomListStatic<16> lst;
+ flext::AtomListStatic<16> lst;
if(GetPyArgs(lst,val)) {
int o = PyInt_AsLong(outl);
if(o >= 1 && o <= ext->Outlets()) {
@@ -295,7 +295,7 @@ PyObject *pyext::pyext_tocanvas(PyObject *,PyObject *args)
if(!tp)
val = PyTuple_GetSlice(args,1,sz); // new ref
- AtomListStatic<16> lst;
+ flext::AtomListStatic<16> lst;
if(GetPyArgs(lst,val)) {
t_glist *gl = ext->thisCanvas(); //canvas_getcurrent();
t_class **cl = (t_pd *)gl;
diff --git a/externals/grill/py/source/py.cpp b/externals/grill/py/source/py.cpp
index 4f46a9ea..44d7a608 100644
--- a/externals/grill/py/source/py.cpp
+++ b/externals/grill/py/source/py.cpp
@@ -331,7 +331,7 @@ bool pyobj::callpy(PyObject *fun,PyObject *args)
return false;
}
else {
- AtomListStatic<16> rargs;
+ flext::AtomListStatic<16> rargs;
if(GetPyArgs(rargs,ret)) {
// call to outlet _outside_ the Mutex lock!
// otherwise (if not detached) deadlock will occur
diff --git a/externals/grill/py/source/pyext.cpp b/externals/grill/py/source/pyext.cpp
index 7d234956..2fd0ee22 100644
--- a/externals/grill/py/source/pyext.cpp
+++ b/externals/grill/py/source/pyext.cpp
@@ -414,7 +414,7 @@ void pyext::m_get(const t_symbol *s)
PyObject *pvar = PyObject_GetAttrString(pyobj,const_cast<char *>(GetString(s))); /* fetch bound method */
if(pvar) {
- AtomListStatic<16> lst;
+ flext::AtomListStatic<16> lst;
if(GetPyArgs(lst,pvar,1)) {
// dump value to attribute outlet
SetSymbol(lst[0],s);
diff --git a/externals/grill/py/source/pyext.h b/externals/grill/py/source/pyext.h
index 4dd97983..c0b5909a 100644
--- a/externals/grill/py/source/pyext.h
+++ b/externals/grill/py/source/pyext.h
@@ -76,7 +76,7 @@ protected:
int inlets,outlets;
int siginlets,sigoutlets;
- AtomListStatic<16> initargs;
+ flext::AtomListStatic<16> initargs;
virtual bool Reload();
virtual bool DoInit();