From 2d5a7c36ee9ae7ff39d8415f81fb911ff822548e Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Sun, 29 Jun 2014 13:35:45 +0200 Subject: sal_uInt16 to size_t Change-Id: Ia36a8d833b697dad4f6bbc611b703efcda4b220c --- sw/source/ui/misc/glosbib.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/ui/misc/glosbib.cxx') diff --git a/sw/source/ui/misc/glosbib.cxx b/sw/source/ui/misc/glosbib.cxx index 8a6762f8c675..a62598835cbb 100644 --- a/sw/source/ui/misc/glosbib.cxx +++ b/sw/source/ui/misc/glosbib.cxx @@ -92,8 +92,8 @@ SwGlossaryGroupDlg::SwGlossaryGroupDlg(Window * pParent, m_pPathLB->SelectEntryPos(0); m_pPathLB->Enable(true); - const sal_uInt16 nCount = pHdl->GetGroupCnt(); - for( sal_uInt16 i = 0; i < nCount; ++i) + const size_t nCount = pHdl->GetGroupCnt(); + for( size_t i = 0; i < nCount; ++i) { OUString sTitle; OUString sGroup = pHdl->GetGroupName(i, &sTitle); -- cgit