summaryrefslogtreecommitdiff
path: root/sw/source/filter/ascii/ascatr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ascii/ascatr.cxx')
-rw-r--r--sw/source/filter/ascii/ascatr.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/filter/ascii/ascatr.cxx b/sw/source/filter/ascii/ascatr.cxx
index 1b1b6519d659..e129c9cf9a0d 100644
--- a/sw/source/filter/ascii/ascatr.cxx
+++ b/sw/source/filter/ascii/ascatr.cxx
@@ -147,8 +147,9 @@ static Writer& OutASC_SwTxtNode( Writer& rWrt, SwCntntNode& rNode )
{
const SwTxtNode& rNd = (SwTxtNode&)rNode;
- xub_StrLen nStrPos = rWrt.pCurPam->GetPoint()->nContent.GetIndex();
- xub_StrLen nNodeEnde = rNd.Len(), nEnde = nNodeEnde;
+ sal_Int32 nStrPos = rWrt.pCurPam->GetPoint()->nContent.GetIndex();
+ const sal_Int32 nNodeEnde = rNd.Len();
+ sal_Int32 nEnde = nNodeEnde;
bool bLastNd = rWrt.pCurPam->GetPoint()->nNode == rWrt.pCurPam->GetMark()->nNode;
if( bLastNd )
nEnde = rWrt.pCurPam->GetMark()->nContent.GetIndex();
@@ -173,7 +174,7 @@ static Writer& OutASC_SwTxtNode( Writer& rWrt, SwCntntNode& rNode )
RTL_TEXTENCODING_UTF8 == rWrt.GetAsciiOptions().GetCharSet();
do {
- xub_StrLen nNextAttr = aAttrIter.WhereNext();
+ sal_Int32 nNextAttr = aAttrIter.WhereNext();
if( nNextAttr > nEnde )
nNextAttr = nEnde;