summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-03-29 22:26:55 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-03-30 16:37:57 +0200
commitf4910a27d333fac865bb498896b624fb3bbd12d5 (patch)
treeebe3708110e37720b23d520768780b3bf572e5a5
parent3351ebde48a31173c2fea9f7270224017e1f4412 (diff)
sal_uInt16 to sal_Int32
Change-Id: I278f325925717bcb8bc45afacd6dbf442f0eefbe
-rw-r--r--sw/source/ui/fmtui/tmpdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/fmtui/tmpdlg.cxx b/sw/source/ui/fmtui/tmpdlg.cxx
index 956840dd7639..10a3e55527ef 100644
--- a/sw/source/ui/fmtui/tmpdlg.cxx
+++ b/sw/source/ui/fmtui/tmpdlg.cxx
@@ -530,7 +530,7 @@ void SwTemplateDlg::PageCreated( sal_uInt16 nId, SfxTabPage &rPage )
::FillCharStyleListBox(rCharFmtLB, pDocShell);
std::vector<OUString> aList;
- for(sal_uInt16 j = 0; j < rCharFmtLB.GetEntryCount(); j++)
+ for(sal_Int32 j = 0; j < rCharFmtLB.GetEntryCount(); j++)
aList.push_back( rCharFmtLB.GetEntry(j) );
aSet.Put( SfxStringListItem( SID_CHAR_FMT_LIST_BOX,&aList ) ) ;