From 11f25a21d609acf09b36767e8ab8fb9304637dfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Timm?= Date: Thu, 17 Jun 2004 11:48:10 +0000 Subject: [PATCH] INTEGRATION: CWS ooo64bit01 (1.2.100); FILE MERGED 2004/03/16 23:54:08 fa 1.2.100.1: Merge cws_srx644_port64bit, other misc fixes --- idlc/source/astarray.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/idlc/source/astarray.cxx b/idlc/source/astarray.cxx index ba901b2dad2a..e175437c5203 100644 --- a/idlc/source/astarray.cxx +++ b/idlc/source/astarray.cxx @@ -2,9 +2,9 @@ * * $RCSfile: astarray.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jsc $ $Date: 2001-04-11 07:24:23 $ + * last change: $Author: rt $ $Date: 2004-06-17 12:48:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -67,7 +67,7 @@ using namespace ::rtl; AstArray::AstArray(const OString& name, AstType* pType, const ExprList& rDimExpr, AstScope* pScope) : AstType(NT_array, name, pScope) , m_pType(pType) - , m_dimension(rDimExpr.size()) + , m_dimension((sal_uInt32)(rDimExpr.size())) , m_dimExpressions(rDimExpr) { if ( m_pType ) @@ -77,7 +77,7 @@ AstArray::AstArray(const OString& name, AstType* pType, const ExprList& rDimExpr AstArray::AstArray(AstType* pType, const ExprList& rDimExpr, AstScope* pScope) : AstType(NT_array, OString("arrary_"), pScope) , m_pType(pType) - , m_dimension(rDimExpr.size()) + , m_dimension((sal_uInt32)(rDimExpr.size())) , m_dimExpressions(rDimExpr) { if ( m_pType )