summaryrefslogtreecommitdiff
path: root/sd/source/filter/html/htmlex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/filter/html/htmlex.cxx')
-rw-r--r--sd/source/filter/html/htmlex.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/filter/html/htmlex.cxx b/sd/source/filter/html/htmlex.cxx
index 632ddd64485d..5273e9f63b5a 100644
--- a/sd/source/filter/html/htmlex.cxx
+++ b/sd/source/filter/html/htmlex.cxx
@@ -1290,13 +1290,13 @@ OUString HtmlExport::ParagraphToHTMLString( SdrOutliner* pOutliner, sal_Int32 nP
return OUString();
HtmlState aState( (mbUserAttr || mbDocColors) ? maTextColor : Color(COL_BLACK) );
- std::vector<sal_uInt16> aPortionList;
+ std::vector<sal_Int32> aPortionList;
rEditEngine.GetPortions( nPara, aPortionList );
- sal_uInt16 nPos1 = 0;
- for( std::vector<sal_uInt16>::const_iterator it( aPortionList.begin() ); it != aPortionList.end(); ++it )
+ sal_Int32 nPos1 = 0;
+ for( std::vector<sal_Int32>::const_iterator it( aPortionList.begin() ); it != aPortionList.end(); ++it )
{
- sal_uInt16 nPos2 = *it;
+ sal_Int32 nPos2 = *it;
ESelection aSelection( nPara, nPos1, nPara, nPos2);