aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flbind.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-09-26 22:55:15 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-09-26 22:55:15 +0000
commitdb005cd335dbdecbf2e555c92a40d6ffdea0ca96 (patch)
tree6f86665347de0c205ae64d008ca333f632971c9c /externals/grill/flext/source/flbind.cpp
parent59b0aae67b1e72fce38c208382ce099bb88e5644 (diff)
""
svn path=/trunk/; revision=2055
Diffstat (limited to 'externals/grill/flext/source/flbind.cpp')
-rw-r--r--externals/grill/flext/source/flbind.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/source/flbind.cpp b/externals/grill/flext/source/flbind.cpp
index ce775de0..6e4d4f92 100644
--- a/externals/grill/flext/source/flbind.cpp
+++ b/externals/grill/flext/source/flbind.cpp
@@ -35,7 +35,7 @@ void flext_base::SetupBindProxy()
#elif FLEXT_SYS == FLEXT_SYS_MAX
pxbnd_class = new t_class;
- pxbnd_class->c_sym = sym__;
+ pxbnd_class->c_sym = const_cast<t_symbol *>(sym__);
pxbnd_class->c_freelist = &px_freelist;
pxbnd_class->c_freefun = NULL;
pxbnd_class->c_size = sizeof(pxbnd_object);
@@ -43,7 +43,7 @@ void flext_base::SetupBindProxy()
pxbnd_class->c_noinlet = 1;
px_messlist[0].m_sym = (t_symbol *)pxbnd_class;
- px_messlist[1].m_sym = sym_anything;
+ px_messlist[1].m_sym = const_cast<t_symbol *>(sym_anything);
px_messlist[1].m_fun = (method)pxbnd_object::px_method;
px_messlist[1].m_type[0] = A_GIMME;
px_messlist[1].m_type[1] = 0;