summaryrefslogtreecommitdiff
path: root/sw/inc/txtrfmrk.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2013-11-12 00:46:22 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2013-11-14 09:23:19 +0100
commitebeff3f074dd94dce4ce6cc55abd0495103684bd (patch)
tree4ba353f7ad94480fccfed3e78e305b80c0e5627b /sw/inc/txtrfmrk.hxx
parentcd470c64f9b09bb94262c606cfc36c8d923ffc54 (diff)
xub_StrLen to sal_Int32 in SwIndex and some related
Change-Id: I66735635a88844c30a7fa1c886d2c1df34008f4f
Diffstat (limited to 'sw/inc/txtrfmrk.hxx')
-rw-r--r--sw/inc/txtrfmrk.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/txtrfmrk.hxx b/sw/inc/txtrfmrk.hxx
index 56e757ffde81..ae944f96f7ff 100644
--- a/sw/inc/txtrfmrk.hxx
+++ b/sw/inc/txtrfmrk.hxx
@@ -29,14 +29,14 @@ class SwTxtNode;
class SwTxtRefMark : public SwTxtAttrEnd
{
SwTxtNode * m_pTxtNode;
- xub_StrLen * m_pEnd; // end is optional (point reference)
+ sal_Int32 * m_pEnd; // end is optional (point reference)
public:
SwTxtRefMark( SwFmtRefMark& rAttr,
- xub_StrLen const nStart, xub_StrLen const*const pEnd = 0);
+ sal_Int32 const nStart, sal_Int32 const*const pEnd = 0);
- virtual xub_StrLen * GetEnd(); // SwTxtAttr
- inline const xub_StrLen * GetEnd() const { return m_pEnd; }
+ virtual sal_Int32 * GetEnd(); // SwTxtAttr
+ inline const sal_Int32 * GetEnd() const { return m_pEnd; }
// get and set TxtNode pointer
inline const SwTxtNode& GetTxtNode() const;