summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unoportenum.cxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-07-20 20:12:41 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-07-22 23:50:43 +0200
commit6f6c8a045c5983658666b4df0a5eb02df3c9d1df (patch)
tree936084d882628f58f01fc16d39de9d49811ae031 /sw/source/core/unocore/unoportenum.cxx
parent824d78b570b06237a645f8db07eb0cebb2190726 (diff)
sal_uInt16 to sal_Int32
Change-Id: I66590e783bd36c7ae4cee19bd3b89864eb37e345
Diffstat (limited to 'sw/source/core/unocore/unoportenum.cxx')
-rw-r--r--sw/source/core/unocore/unoportenum.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx
index 24c61442acba..8057f1de726f 100644
--- a/sw/source/core/unocore/unoportenum.cxx
+++ b/sw/source/core/unocore/unoportenum.cxx
@@ -698,7 +698,7 @@ lcl_ExportHints(
SwDoc* pDoc = pUnoCrsr->GetDoc();
//search for special text attributes - first some ends
size_t nEndIndex = 0;
- sal_uInt16 nNextEnd = 0;
+ sal_Int32 nNextEnd = 0;
while(nEndIndex < pHints->GetEndCount() &&
(!pHints->GetEnd(nEndIndex)->GetEnd() ||
nCurrentIndex >= (nNextEnd = (*pHints->GetEnd(nEndIndex)->GetEnd()))))
@@ -781,7 +781,7 @@ lcl_ExportHints(
// then some starts
size_t nStartIndex = 0;
- sal_uInt16 nNextStart = 0;
+ sal_Int32 nNextStart = 0;
while(nStartIndex < pHints->GetStartCount() &&
nCurrentIndex >= (nNextStart = pHints->GetStart(nStartIndex)->GetStart()))
{