summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--testautomation/global/system/includes/iniinfo.inc5
1 files changed, 3 insertions, 2 deletions
diff --git a/testautomation/global/system/includes/iniinfo.inc b/testautomation/global/system/includes/iniinfo.inc
index 1d5953bae614..479d9ffada1b 100644
--- a/testautomation/global/system/includes/iniinfo.inc
+++ b/testautomation/global/system/includes/iniinfo.inc
@@ -218,8 +218,6 @@ function hGetPathSigne(sPlatform as string) as string
'/// <u>Input</u>: string of class gPlatform
'/// <u>Output</u>: string which can be used as seperator in directories
- printlog( " *** CALLED HGETPATHSIGNE *** " )
-
select case sPlatform
case "w95" : hGetPathSigne = "\"
case "w98" : hGetPathSigne = "\"
@@ -258,6 +256,7 @@ function ConvertPath ( sDatei$, optional sPlatform as string ) as String
dim sLocalPlatGroup as string
dim sLocalPathSigne as string
+ printlog( " *** convertpath( in ): " & sDatei$ )
if (isMissing(sPlatform)) then
sLocalPlatGroup = gPlatGroup
sLocalPathSigne = gPathSigne
@@ -292,6 +291,8 @@ function ConvertPath ( sDatei$, optional sPlatform as string ) as String
s3$ = s3$ + s2$ + sLocalPathSigne
loop until s1$=""
+ printlog( " *** convertpath( out): " & s3$ + s1$ )
+
ConvertPath = s3$ + s1$
end function