summaryrefslogtreecommitdiff
path: root/svl/source/memtools
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-13 10:26:18 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-13 10:26:18 +0100
commit6e6de6ff1ed83b1a0d3a09ce4a91f72f15403886 (patch)
tree488f77e158e641b890570509692f9996d1dbea2f /svl/source/memtools
parentcaa3d247d2ff8d34881e5fdb2edd4d153c2725c0 (diff)
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in svl
Diffstat (limited to 'svl/source/memtools')
-rw-r--r--svl/source/memtools/svarray.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/memtools/svarray.cxx b/svl/source/memtools/svarray.cxx
index 7088d036be3c..f8b190d0cb4c 100644
--- a/svl/source/memtools/svarray.cxx
+++ b/svl/source/memtools/svarray.cxx
@@ -68,11 +68,11 @@ sal_uInt16 SvPtrarr::GetPos( const VoidPtr& aElement ) const
return ( n >= nA ? USHRT_MAX : n );
}
-SV_IMPL_VARARR( SvULongs, sal_uIntPtr )
+SV_IMPL_VARARR( SvULongs, sal_uLong )
SV_IMPL_VARARR( SvUShorts, sal_uInt16 )
SV_IMPL_VARARR( SvLongs, long)
-SV_IMPL_VARARR_SORT( SvULongsSort, sal_uIntPtr )
+SV_IMPL_VARARR_SORT( SvULongsSort, sal_uLong )
SV_IMPL_VARARR_SORT( SvLongsSort, long )
SV_IMPL_PTRARR( SvStrings, StringPtr )