diff options
Diffstat (limited to 'data/defscript/installer.kvs')
-rw-r--r-- | data/defscript/installer.kvs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/defscript/installer.kvs b/data/defscript/installer.kvs index f974b7ed..f25aa78d 100644 --- a/data/defscript/installer.kvs +++ b/data/defscript/installer.kvs @@ -71,7 +71,7 @@ class(installer,object) @$mkdir($2) foreach(%file,%files) { - $this->%lFiles <+ $str.replace($file.fixpath("$2/%file"),"\\\\","\\") + $this->%lFiles <+ $str.tqreplace($file.fixpath("$2/%file"),"\\\\","\\") file.copy -o $file.fixpath($0/%file) $file.fixpath($2/%file) } } @@ -117,7 +117,7 @@ class(installer,object) { foreach(%file,%files) { - $this->%lSources <+ $str.replace($file.fixpath("$0/%file"),"\\\\","\\") + $this->%lSources <+ $str.tqreplace($file.fixpath("$0/%file"),"\\\\","\\") include $file.fixpath("$0/%file") } } @@ -150,7 +150,7 @@ class(installer,object) else if($str.match("toolbar.create * *",%line,e)) %c .= " toolbar.destroy -q "$str.word(1,%line)"$lf" else if($str.match("action.create* (*)",%line,e)) - %c .= " action.destroy -q "$str.replace($str.token(1,"(,)",%line),,\")"$lf" + %c .= " action.destroy -q "$str.tqreplace($str.token(1,"(,)",%line),,\")"$lf" else if($str.match("class(*)*",%line,e)) %c .= " objects.killclass -q "$str.token(1,"(,)",%line)"$lf" } |