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/source | |
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/source')
-rw-r--r-- | externals/grill/vasp/source/classes.cpp | 2 |
1 files changed, 1 insertions, 1 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); |