diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-04-20 06:25:47 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-04-20 06:25:47 +0000 |
commit | 696f402e197009bc42ad6ec028222bd8f2ad6d99 (patch) | |
tree | e4a70164f9ee7c97ca1f010b9ce6c8f143441147 /stoc/source | |
parent | d08880b06b81b52b04a1e442825f193a32cc2fed (diff) |
fatal bug fixed with sequence typedescriptions
Diffstat (limited to 'stoc/source')
-rw-r--r-- | stoc/source/tdmanager/tdmgr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/tdmanager/tdmgr.cxx b/stoc/source/tdmanager/tdmgr.cxx index 0b31f96b23e5..e5ac0ab14e8c 100644 --- a/stoc/source/tdmanager/tdmgr.cxx +++ b/stoc/source/tdmanager/tdmgr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tdmgr.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: jsc $ $Date: 2001-03-30 13:48:26 $ + * last change: $Author: jbu $ $Date: 2001-04-20 07:25:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -803,7 +803,7 @@ Any ManagerImpl::getByHierarchicalName( const OUString & rName ) else return Any(); // further lookup makes no sense } - if (rName[rName.getLength()-1] == ']') // test for array + else if (rName[rName.getLength()-1] == ']') // test for array { sal_Int32 nDims = rName.getTokenCount('[') - 1; sal_Int32 dimOffset = rName.indexOf('['); |