summaryrefslogtreecommitdiff
path: root/testautomation/global/system/includes
diff options
context:
space:
mode:
authorJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-22 11:51:24 +0100
committerJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-22 11:51:24 +0100
commit62d28aee0d1684f4b2d71a4ed6754fbbefbda620 (patch)
tree8d5eeb7c76a4b53cb0b3b1e4155b11a4463195ac /testautomation/global/system/includes
parent7caa6abf90640e524c9f1f745da14d5fbe935f87 (diff)
vitomation01: #i109562 - remove printlog from hGetPathSigne, added printlogs to convertpath() to track usage
Diffstat (limited to 'testautomation/global/system/includes')
-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