From 7b2e557a6b96205b04c252dc24e3fe71f0c12b30 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Wed, 5 Oct 2005 13:51:59 +0000 Subject: INTEGRATION: CWS intptr (1.28.38); FILE MERGED 2005/09/13 14:50:28 kendy 1.28.38.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer --- scaddins/source/analysis/analysishelper.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scaddins') diff --git a/scaddins/source/analysis/analysishelper.hxx b/scaddins/source/analysis/analysishelper.hxx index f439faeb1c06..364d09d56a78 100644 --- a/scaddins/source/analysis/analysishelper.hxx +++ b/scaddins/source/analysis/analysishelper.hxx @@ -4,9 +4,9 @@ * * $RCSfile: analysishelper.hxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:20:33 $ + * last change: $Author: kz $ $Date: 2005-10-05 14:51:59 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -371,7 +371,7 @@ public: /// @return element on position nIndex or 0 on invalid index inline sal_Int32 Get( sal_uInt32 nIndex ) const - { return (sal_Int32) MyList::GetObject( nIndex ); } + { return (sal_Int32)(sal_IntPtr) MyList::GetObject( nIndex ); } /// @return number of elements in the range of nMinVal to nMaxVal (both included) sal_Int32 CountCondition( sal_Int32 nMinVal, sal_Int32 nMaxVal ) const; -- cgit