Use generic name for nexus dictionary.

r1528 | ffr | 2007-02-20 16:05:19 +1100 (Tue, 20 Feb 2007) | 2 lines
This commit is contained in:
Ferdi Franceschini
2007-02-20 16:05:19 +11:00
committed by Douglas Clowes
parent 0f4d994c0d
commit b5d26e4560
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
MakeNXScript
#nxscript createxml junk4.xml echidna.dic
proc getVal {msg} {
return [string trim [lindex [split $msg =] 1 ] ]
}
@@ -20,14 +20,14 @@ proc nxcreatefile {{type nx.hdf}} {
array set nxmode [list nx.hdf create5 h5 create5 nx5 create5 xml createxml];
set dataFileName [newFileName]
nxscript $nxmode($type) $dataFileName $cfPath(nexus)/echidna.dic;
nxscript $nxmode($type) $dataFileName $cfPath(nexus)/nexus.dic;
set nxFileOpen true
}
proc nxreopenfile {} {
global dataFileName nxFileOpen cfPath;
nxscript reopen $dataFileName $cfPath(nexus)/echidna.dic;
nxscript reopen $dataFileName $cfPath(nexus)/nexus.dic;
set nxFileOpen true;
}