summaryrefslogtreecommitdiff
path: root/testautomation/global/tools/includes/required/t_menu.inc
diff options
context:
space:
mode:
authorJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-11 10:51:49 +0100
committerJoerg Skottke [jsk] <jsk@openoffice.org>2010-03-11 10:51:49 +0100
commit6d5ba1bc574fd06b4d6c5fda9959c02f6bb0f510 (patch)
tree3fc784105e3f362544dd094dd606d26c22047917 /testautomation/global/tools/includes/required/t_menu.inc
parent37917c34fd9b8110bdd4f802f0d63f692b204526 (diff)
vitomation01: #i109562 - Removed unexpected ***** Warning: Indention error ***** strings
Diffstat (limited to 'testautomation/global/tools/includes/required/t_menu.inc')
-rw-r--r--testautomation/global/tools/includes/required/t_menu.inc11
1 files changed, 0 insertions, 11 deletions
diff --git a/testautomation/global/tools/includes/required/t_menu.inc b/testautomation/global/tools/includes/required/t_menu.inc
index abb6c719c1a4..baf9d5f373fe 100644
--- a/testautomation/global/tools/includes/required/t_menu.inc
+++ b/testautomation/global/tools/includes/required/t_menu.inc
@@ -866,13 +866,8 @@ function fSplitWindowTitle(sInString as string)
qaErrorLog "t_menu.inc::fSplitWindowTitle: Unknown count of Window Title Strings! 3"
bError = TRUE
endif
-
- '***** Warning: Indention error *****
case 4:
if ((NOT bTestToolCommunication) OR (NOT bDebugVersion)) then
-
-
- '***** Warning: Indention error *****
qaErrorLog "t_menu.inc::fSplitWindowTitle: Unknown count of Window Title Strings! 4"
bError = TRUE
endif
@@ -888,32 +883,26 @@ function fSplitWindowTitle(sInString as string)
if (x > 1) then ' there is more to evaluate
' save the current computed values
for i=0 to 2
- '***** Warning: Indention error *****
sTempReturn2(i) = sTempReturn(i)
next i
' make return array bigger
redim sTempReturn(4) as string
' copy data back
for i=0 to 2
- '***** Warning: Indention error *****
sTempReturn(i) = sTempReturn2(i)
next i
' set remaining values, if exist
' debug version string
if bDebugVersion then
- '***** Warning: Indention error *****
sTempReturn(3) = mid(sTemp(2),2,len(sTemp(2))-2) ' optional (3) Debug Version
else
- '***** Warning: Indention error *****
sTempReturn(3) = ""
endif
' TestTool Communication string
if bTestToolCommunication then
- '***** Warning: Indention error *****
' if true, then always the two last strings
sTempReturn(4) = sTemp(x-1) + " " + sTemp(x) ' optional (4) TestTool Communication
else
- '***** Warning: Indention error *****
sTempReturn(4) = ""
endif
endif