summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-11 09:24:46 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-11 09:24:46 +0100
commitce4e7d16a32df7448947e4cc72836bfea9aace26 (patch)
treedfcca306ed5a3169db78b607f04cf03d7ad51a00
parentd2d9e70022b76364997f95c7b1adfdc27b112c74 (diff)
removetooltypes01: Use correct conversion ULONG => sal_uIntPtr
-rw-r--r--xmloff/source/text/XMLTextListAutoStylePool.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLTextListAutoStylePool.cxx b/xmloff/source/text/XMLTextListAutoStylePool.cxx
index a5294ff61693..615978e7b609 100644
--- a/xmloff/source/text/XMLTextListAutoStylePool.cxx
+++ b/xmloff/source/text/XMLTextListAutoStylePool.cxx
@@ -186,7 +186,7 @@ XMLTextListAutoStylePool::XMLTextListAutoStylePool( SvXMLExport& rExp ) :
XMLTextListAutoStylePool::~XMLTextListAutoStylePool()
{
// The XMLTextListAutoStylePoolEntry_Impl object in the pool need delete explicitly in dtor.
- sal_uInt32 nCount = pPool->Count();
+ sal_uIntPtr nCount = pPool->Count();
while ( nCount-- )
delete pPool->Remove(nCount);
delete pPool;