From 3befdd37c610e37d6f1eb33ec2f76ef77a2ba1a0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 2 Dec 2013 14:09:17 +0200 Subject: [PATCH] convert xub_StrLen -> sal_Int32 Change-Id: If8f3c32f1e7664ceb266341a407aa29effa25ced --- sw/source/ui/wrtsh/wrtsh1.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 );