summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc/msfilter.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2013-11-22 20:29:26 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2013-11-23 14:20:38 +0100
commitd3cb483e7fa127886877dba08c285f47093c27d8 (patch)
tree030eae05c2346442074e0a8ff5b99d04e73ee045 /sw/source/filter/inc/msfilter.hxx
parent4963072118a37ade94430ce08592680e11484593 (diff)
xub_StrLen to sal_Int32
Change-Id: I7f30e122a44eda7ee1c93595029ec15b6b426d6c
Diffstat (limited to 'sw/source/filter/inc/msfilter.hxx')
-rw-r--r--sw/source/filter/inc/msfilter.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/inc/msfilter.hxx b/sw/source/filter/inc/msfilter.hxx
index 30a5997ac6a1..08975dab388a 100644
--- a/sw/source/filter/inc/msfilter.hxx
+++ b/sw/source/filter/inc/msfilter.hxx
@@ -430,11 +430,11 @@ namespace sw
struct CharRunEntry
{
- xub_StrLen mnEndPos;
+ sal_Int32 mnEndPos;
sal_uInt16 mnScript;
rtl_TextEncoding meCharSet;
bool mbRTL;
- CharRunEntry(xub_StrLen nEndPos, sal_uInt16 nScript,
+ CharRunEntry(sal_Int32 nEndPos, sal_uInt16 nScript,
rtl_TextEncoding eCharSet, bool bRTL)
: mnEndPos(nEndPos), mnScript(nScript), meCharSet(eCharSet),
mbRTL(bRTL)
@@ -475,7 +475,7 @@ namespace sw
@see #i22537# for example
*/
CharRuns GetPseudoCharRuns(const SwTxtNode& rTxtNd,
- xub_StrLen nStart = 0, bool bSplitOnCharSet = false);
+ sal_Int32 nStart = 0, bool bSplitOnCharSet = false);
}
}