summaryrefslogtreecommitdiff
path: root/scaddins
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 13:51:59 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 13:51:59 +0000
commit7b2e557a6b96205b04c252dc24e3fe71f0c12b30 (patch)
tree457808bf95189410b45359347ab4db226c4d8b00 /scaddins
parent9b8c179517f073da6079d6ff89c4fbec353bd06e (diff)
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
Diffstat (limited to 'scaddins')
-rw-r--r--scaddins/source/analysis/analysishelper.hxx6
1 files changed, 3 insertions, 3 deletions
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;