diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-04 22:56:51 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-27 16:51:26 +0100 |
commit | 7d8919d2d54767d1e34d67129c9e4ae62a1707f3 (patch) | |
tree | 44349d6091f832c3b778cf4035b77bbf3adae837 /basic/source | |
parent | fb46f61c51872ea85fb3d9f08cc44235bc8c2703 (diff) |
sal_uLong/sal_uIntPtr for ScNumFormatAbbrev
Change-Id: I45f2a43fe4295e44691ab00c93af3fca41b1dcfa
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/runtime/methods1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx index 48ef752330af..1f386376a7fc 100644 --- a/basic/source/runtime/methods1.cxx +++ b/basic/source/runtime/methods1.cxx @@ -2539,7 +2539,7 @@ RTLFUNC(FormatDateTime) } LanguageType eLangType = Application::GetSettings().GetLanguageTag().getLanguageType(); - sal_uIntPtr nIndex = pFormatter->GetFormatIndex( NF_DATE_SYSTEM_LONG, eLangType ); + const sal_uInt32 nIndex = pFormatter->GetFormatIndex( NF_DATE_SYSTEM_LONG, eLangType ); Color* pCol; pFormatter->GetOutputString( dDate, nIndex, aRetStr, &pCol ); |