summaryrefslogtreecommitdiff
path: root/testautomation/global/system
diff options
context:
space:
mode:
authorJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-02 09:10:47 +0100
committerJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-02 09:10:47 +0100
commit263994914d04267498f202dd0a4b528c7dc12800 (patch)
tree6bb3018f9394a9e1659b82163e1119db2182c32d /testautomation/global/system
parent4e81c9a7435d287477934e2a4d0c60ad0cf7ddb1 (diff)
vitomation01: #i109696 - Removed wrapper function hFileExists() - it does exactly the same as the builtin function FileExists() plus some overhead.
Diffstat (limited to 'testautomation/global/system')
-rwxr-xr-xtestautomation/global/system/includes/inivalue.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/testautomation/global/system/includes/inivalue.inc b/testautomation/global/system/includes/inivalue.inc
index db575562b39e..b283be6d5aac 100755
--- a/testautomation/global/system/includes/inivalue.inc
+++ b/testautomation/global/system/includes/inivalue.inc
@@ -248,7 +248,7 @@ sub DateiSperren( Datei$ )
'///+ OUTPUT: - ///'
Dim i%
- if hFileExists ( Datei$ ) <> TRUE then
+ if FileExists ( Datei$ ) <> TRUE then
Warnlog "File '" + Datei$ + "' doesn't exist; exiting now!"
exit sub
end if
@@ -270,7 +270,7 @@ sub DateiFreigeben( Datei$ )
'///+ OUTPUT: - ///'
Dim i%
- if hFileExists ( Datei$ ) <> TRUE then
+ if FileExists ( Datei$ ) <> TRUE then
Warnlog "File '" + Datei$ + "' doesn't exist; exiting now!"
exit sub
end if