summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-12-02 14:09:17 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:49 +0200
commit3befdd37c610e37d6f1eb33ec2f76ef77a2ba1a0 (patch)
tree2c011b858052f0a141c87e45141740dfa33664c6 /sw
parentca015ac13100bb1dc9788990cc7189ce77705480 (diff)
convert xub_StrLen -> sal_Int32
Change-Id: If8f3c32f1e7664ceb266341a407aa29effa25ced
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/wrtsh/wrtsh1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/wrtsh/wrtsh1.cxx b/sw/source/ui/wrtsh/wrtsh1.cxx
index c19438ce644c..7472a6d49698 100644
--- a/sw/source/ui/wrtsh/wrtsh1.cxx
+++ b/sw/source/ui/wrtsh/wrtsh1.cxx
@@ -172,7 +172,7 @@ void SwWrtShell::InsertByWord( const OUString & rStr)
if( !rStr.isEmpty() )
{
sal_Bool bDelim = GetAppCharClass().isLetterNumeric( rStr, 0 );
- xub_StrLen nPos = 0, nStt = 0;
+ sal_Int32 nPos = 0, nStt = 0;
for( ; nPos < rStr.getLength(); nPos++ )
{
sal_Bool bTmpDelim = GetAppCharClass().isLetterNumeric( rStr, nPos );