diff options
author | Noel Grandin <noel@peralex.com> | 2013-12-03 11:34:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-12-03 11:34:50 +0200 |
commit | 6b6254dfb16febd3e84dde30231f034331d1d2f7 (patch) | |
tree | fe7e51d79cde8f9828d60375d9444653b379680a /sw/source/ui/dbui | |
parent | 6d31302d272ac5bc5ad5749cc703c3ddc610957c (diff) |
convert callers of SwIndex::GetContent from xub_StrLen->sal_Int32
Change-Id: I542399d3ed3a3b42592bcabb70d7034b3a4cc93c
Diffstat (limited to 'sw/source/ui/dbui')
-rw-r--r-- | sw/source/ui/dbui/mmaddressblockpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dbui/mmaddressblockpage.cxx b/sw/source/ui/dbui/mmaddressblockpage.cxx index 21e0cf8da34a..62a7b4057dc6 100644 --- a/sw/source/ui/dbui/mmaddressblockpage.cxx +++ b/sw/source/ui/dbui/mmaddressblockpage.cxx @@ -1334,7 +1334,7 @@ void AddressMultiLineEdit::SetText( const OUString& rStr ) sal_uLong nParaCount = pTextEngine->GetParagraphCount(); for(sal_uLong nPara = 0; nPara < nParaCount; ++nPara) { - xub_StrLen nIndex = 0; + sal_Int32 nIndex = 0; OUString sPara = pTextEngine->GetText( nPara ); if(!sPara.isEmpty() && !sPara.endsWith(" ")) { |