diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-11-12 00:46:22 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-11-14 09:23:19 +0100 |
commit | ebeff3f074dd94dce4ce6cc55abd0495103684bd (patch) | |
tree | 4ba353f7ad94480fccfed3e78e305b80c0e5627b /sw/inc/hints.hxx | |
parent | cd470c64f9b09bb94262c606cfc36c8d923ffc54 (diff) |
xub_StrLen to sal_Int32 in SwIndex and some related
Change-Id: I66735635a88844c30a7fa1c886d2c1df34008f4f
Diffstat (limited to 'sw/inc/hints.hxx')
-rw-r--r-- | sw/inc/hints.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx index a2a268fc9530..f3f1dcbcaef1 100644 --- a/sw/inc/hints.hxx +++ b/sw/inc/hints.hxx @@ -76,10 +76,10 @@ public: class SwInsTxt: public SwMsgPoolItem { public: - xub_StrLen nPos; - xub_StrLen nLen; + sal_Int32 nPos; + sal_Int32 nLen; - SwInsTxt( xub_StrLen nP, xub_StrLen nL ); + SwInsTxt( sal_Int32 nP, sal_Int32 nL ); }; class SwDelChr: public SwMsgPoolItem |