From de05d4ee53b5ff0e7404058cef6d3a311e6b35e4 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 6 Nov 2017 08:26:34 +0200 Subject: convert GetNumStr from sal_uLong->sal_Int32 the code was truncating the param to sal_Int32 anyway Change-Id: I743b60097df937c16c995e2e6deacc12cf12e5e9 Reviewed-on: https://gerrit.libreoffice.org/44341 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/editeng/numitem.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx index c898e3dc8045..177a360d8b41 100644 --- a/include/editeng/numitem.hxx +++ b/include/editeng/numitem.hxx @@ -66,8 +66,8 @@ public: SvxNumberType(const SvxNumberType& rType); ~SvxNumberType(); - OUString GetNumStr( sal_uLong nNo ) const; - OUString GetNumStr( sal_uLong nNo, const css::lang::Locale& rLocale ) const; + OUString GetNumStr( sal_Int32 nNo ) const; + OUString GetNumStr( sal_Int32 nNo, const css::lang::Locale& rLocale ) const; void SetNumberingType(SvxNumType nSet) {nNumType = nSet;} SvxNumType GetNumberingType() const {return nNumType;} -- cgit