diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-03-13 04:58:02 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-03-13 04:58:02 +0000 |
commit | b1d7abe2eddd5d2f1c579a6e0967e6ca7de78ecb (patch) | |
tree | 5ec37763500a5e838e8937d8abb80481630cf1c7 /externals/grill/vasp | |
parent | 9026ea4981dd69959341b3f646ed26a7fd9b9f5b (diff) |
small fix for new flext naming
avoid malicious file name characters
svn path=/trunk/; revision=2622
Diffstat (limited to 'externals/grill/vasp')
-rw-r--r-- | externals/grill/vasp/source/classes.cpp | 2 | ||||
-rw-r--r-- | externals/grill/vasp/vasp.vcproj | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/vasp/source/classes.cpp b/externals/grill/vasp/source/classes.cpp index 42697a1e..1e15076f 100644 --- a/externals/grill/vasp/source/classes.cpp +++ b/externals/grill/vasp/source/classes.cpp @@ -57,7 +57,7 @@ V vasp_base::m_radio(I argc,const t_atom *argv) { if(argc > 0 && IsSymbol(argv[0])) { // send command to self! - m_methodmain(0,GetSymbol(argv[0]),argc-1,argv+1); + ToSelfAnything(0,GetSymbol(argv[0]),argc-1,argv+1); // send command to the next objects in line ToOutAnything(0,sym_radio,argc,argv); diff --git a/externals/grill/vasp/vasp.vcproj b/externals/grill/vasp/vasp.vcproj index 94fd8054..0da4ea2e 100644 --- a/externals/grill/vasp/vasp.vcproj +++ b/externals/grill/vasp/vasp.vcproj @@ -151,7 +151,7 @@ InlineFunctionExpansion="2" FavorSizeOrSpeed="1" OptimizeForProcessor="2" - AdditionalIncludeDirectories="c:\programme\audio\pd\src,f:\prog\max\flext\source" + AdditionalIncludeDirectories="c:\programme\audio\pd\src,..\flext\source" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;FLEXT_SYS=2;FLEXT_THREADS" StringPooling="TRUE" ExceptionHandling="TRUE" |