aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flmeth.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-05-15 23:03:52 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-05-15 23:03:52 +0000
commit868f89bd90a345c5a33fa181cca7305fd852d051 (patch)
tree8eb283affabd47058fa9fa3c96ea314a2d8663e0 /externals/grill/flext/source/flmeth.cpp
parent19ff830fa9aa293e67b5f7b547bb6d8c34982857 (diff)
*** empty log message ***
svn path=/trunk/; revision=5065
Diffstat (limited to 'externals/grill/flext/source/flmeth.cpp')
-rwxr-xr-xexternals/grill/flext/source/flmeth.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/flext/source/flmeth.cpp b/externals/grill/flext/source/flmeth.cpp
index 69b1e640..c538922b 100755
--- a/externals/grill/flext/source/flmeth.cpp
+++ b/externals/grill/flext/source/flmeth.cpp
@@ -2,7 +2,7 @@
flext - C++ layer for Max/MSP and pd (pure data) externals
-Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org)
+Copyright (c) 2001-2006 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
@@ -64,8 +64,8 @@ void flext_base::AddMethod(ItemCont *ma,int inlet,const t_symbol *tag,methfun fu
ERRINTERNAL();
}
#endif
-#if FLEXT_SYS == FLEXT_SYS_PD
- if(a == a_pointer && flext_base::compatibility) {
+#if FLEXT_SYS == FLEXT_SYS_PD && defined(FLEXT_COMPATIBLE)
+ if(a == a_pointer) {
post("Pointer arguments are not allowed in compatibility mode");
}
#endif