summaryrefslogtreecommitdiff
path: root/basic/source/sbx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 13:31:56 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 13:31:56 +0000
commit9e22a4e6b76a8d910b96e7055e6d5d4be2a3a226 (patch)
treefecc0aef4d4430b904a0c55f3819fcc53e0e305c /basic/source/sbx
parent5983bfb7ae7fe4f24d6b750e47d2dedeb23a9d7a (diff)
INTEGRATION: CWS sb59 (1.4.24); FILE MERGED
2006/08/11 15:04:31 sb 1.4.24.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'basic/source/sbx')
-rw-r--r--basic/source/sbx/sbxarray.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx
index 568aad5b6f47..b1e3e9d3e098 100644
--- a/basic/source/sbx/sbxarray.cxx
+++ b/basic/source/sbx/sbxarray.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sbxarray.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 10:07:42 $
+ * last change: $Author: obo $ $Date: 2006-10-12 14:31:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -798,7 +798,7 @@ UINT32 SbxDimArray::Offset32( SbxArray* pPar )
SetError( SbxERR_BOUNDS ); return 0;
}
UINT32 nPos = 0;
- UINT32 nOff = 1; // Nicht Element 0!
+ USHORT nOff = 1; // Nicht Element 0!
for( SbxDim* p = pFirst; p && !IsError(); p = p->pNext )
{
INT32 nIdx = pPar->Get( nOff++ )->GetLong();