diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-26 22:59:46 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-03-30 16:37:44 +0200 |
commit | 3a2a68a90f96d844c2e2636ecf3236c6f365520a (patch) | |
tree | bac240c59d082e616a934330cde1d4a58c34815d /sw/source/ui | |
parent | 55b4c22d5ba86e8fc2082af4f04ba434c06eef1a (diff) |
sal_uInt16 to sal_Int32/size_t and some rework
Change-Id: Iea599d8d8af6ad2655485dfb7973e73bd527377e
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/frmdlg/frmpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx index 8b04a71f7588..5346093d3631 100644 --- a/sw/source/ui/frmdlg/frmpage.cxx +++ b/sw/source/ui/frmdlg/frmpage.cxx @@ -449,7 +449,7 @@ static void lcl_InsertVectors(ListBox& rBox, nEntry = rBox.InsertEntry(*aIt); rBox.SetSeparatorPos(nEntry); //now insert all strings sorted - sal_uInt16 nStartPos = static_cast<sal_uInt16>(rBox.GetEntryCount()); + const sal_Int32 nStartPos = rBox.GetEntryCount(); for(aIt = rPrev.begin(); aIt != rPrev.end(); ++aIt) ::InsertStringSorted(*aIt, rBox, nStartPos ); |