diff options
author | obo <obo@openoffice.org> | 2010-06-23 13:38:34 +0200 |
---|---|---|
committer | obo <obo@openoffice.org> | 2010-06-23 13:38:34 +0200 |
commit | ae7bd7f4249ca94e04f837b23bf691b207976084 (patch) | |
tree | c5cd113aa8312e6fcb101e656b0cf49b560d1f70 | |
parent | 576dd87f11eb31c903f23f764f1fcb71d1db4b6e (diff) |
koheirowlimitperf: #i109369# #i109373# #i109384# #i109385# #i109386# #i109387# #i109388# #i109389# #i109391# #i109934# #i109935# #i110116# #i111531# #i111887# #i112190# #i30215# increased the row limit to 1 million, and integrated lots of speed optimization and bug fixes to ensure Calc remains usable after the row limit increase.ooo/OOO330_m0ooo/DEV300_m84
-rwxr-xr-x[-rw-r--r--] | testautomation/spreadsheet/required/includes/c_upd_editmenu.inc | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/testautomation/spreadsheet/required/includes/c_upd_editmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_editmenu.inc index 07c769cf3..9af880af0 100644..100755 --- a/testautomation/spreadsheet/required/includes/c_upd_editmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_editmenu.inc @@ -304,18 +304,13 @@ testcase tEditSelectAll '/// Select whole sheet via Edit - Select All printlog " Select whole sheet via Edit - Select All" EditSelectAll - '/// Check in areafield if the whole sheet is selected (A1:AMJ65536) - printlog " Check in areafield if the whole sheet is selected (A1:AMJ65536)" + '/// Check in areafield if the whole sheet is selected (A1:AMJ1048576) + printlog " Check in areafield if the whole sheet is selected (A1:AMJ1048576)" kontext "RechenleisteCalc" - if Bereich.getSelText = "A1:AMJ65536" then + if Bereich.getSelText = "A1:AMJ1048576" then printlog " - SelectAll is working" else - if Bereich.getSelText = "A1:IV65536" then - printlog " - SelectAll is working" - QaErrorLog "This should be a spreadsheet before the column limit (256 -> 1024) was enhanced" - else - warnlog "SelectAll is not working as expected. The area is " & Bereich.getSelText & " instead of A1:IV65536" - end if + warnlog "SelectAll is not working as expected. The area is " & Bereich.getSelText & " instead of A1:AMJ1048576" end if '/// Close document printlog " Close document" |