summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2009-12-14 11:44:06 +0000
committerOliver Bolte <obo@openoffice.org>2009-12-14 11:44:06 +0000
commit29202bab9013e06da34b8f71c1372b8667460a89 (patch)
treeafad463185ce0f7359f41f99f10c18c3740bb952
parent9c837c5ed712def04d405a8ef37f91ce749b3306 (diff)
CWS-TOOLING: integrate CWS jl146
2009-12-11 15:27:57 +0100 jsk r277793 : jl146: #i107038 - The page is now centered so the workarounds for UNIX(like) OS are no longer required. Fixed one timing issue in a tools library 2009-12-11 14:51:36 +0100 mav r277792 : #i107525# use the system file locking after storing process is over 2009-12-11 08:01:14 +0100 hde r277783 : reverted previous changes 2009-12-11 07:57:16 +0100 hde r277782 : Introduce new sub to change default page layout 2009-12-11 07:54:40 +0100 hde r277781 : Introduce new sub to change default page layout 2009-12-10 14:12:21 +0100 hde r277779 : FIX: initial dialog closed that opened after loading document, close all documents at end of testcase 2009-12-10 13:21:20 +0100 jsk r277778 : jl146: #i107038 - Added call to ViewZoom at the end of hNewDocument() for Writer documents 2009-12-10 13:19:53 +0100 mav r277777 : #i10000# adopt for unix 2009-12-10 11:58:47 +0100 hde r277774 : FIX: selection of tabpage failed 2009-12-10 11:58:16 +0100 mav r277773 : #i107512# let the singleton be registered 2009-12-10 11:28:23 +0100 jsk r277771 : jl146: #i107038 - Reverting changes made for the given issue as it is no longer reproducible in a m7. 2009-12-10 09:43:31 +0100 hde r277770 : FIX: document must'nt be read only, export Filter fixed 2009-12-09 21:51:15 +0100 mav r277769 : #i107525# let the original file be locked with the system file locking 2009-12-09 12:10:48 +0100 er r277763 : #i107501# #i107518# ScRange::Parse_XL_Header: reset external doc name if it was none 2009-12-09 11:54:32 +0100 jsk r277762 : jl149: #i107548 - e_extensions.bas was unable to handle root-installations. Now we identify the installation target directory messagebox (which only pops up if the user has the rights to install into shared layer). Otherwise we skip. 2009-12-09 08:56:16 +0100 jsk r277756 : sb146: #i107548 - Replacing publisher.inc with the version from cws sb111 (which brings dynamic waiting plus extra time for unopkg add to complete) 2009-12-08 15:11:19 +0100 jl r277751 : #i107528# incorrect string conversion of the path of the berkeley db causes the Extension Manager to abort
-rw-r--r--sc/source/core/tool/address.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx
index 906b9e769..14134de7b 100644
--- a/sc/source/core/tool/address.cxx
+++ b/sc/source/core/tool/address.cxx
@@ -365,7 +365,10 @@ const sal_Unicode* ScRange::Parse_XL_Header(
{
p = lcl_ParseQuotedName(p, rExternDocName);
if (!*p || *p != ']' || !rExternDocName.Len())
+ {
+ rExternDocName.Erase();
return start;
+ }
}
else
{
@@ -418,7 +421,10 @@ const sal_Unicode* ScRange::Parse_XL_Header(
// Excel does not allow [ and ] characters in sheet names though.
p = lcl_ParseQuotedName(p, rExternDocName);
if (!*p || *p != '!')
+ {
+ rExternDocName.Erase();
return start;
+ }
if (rExternDocName.Len())
{
xub_StrLen nOpen = rExternDocName.Search( '[');