summaryrefslogtreecommitdiff
path: root/include/editeng/numitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-06 08:26:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-06 09:49:27 +0100
commitde05d4ee53b5ff0e7404058cef6d3a311e6b35e4 (patch)
tree853ea96ecdb10bc88350573041bcbf7c32c4e88d /include/editeng/numitem.hxx
parent0a4ad544daaec4f773480e6301238c7f6958a9ab (diff)
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 <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng/numitem.hxx')
-rw-r--r--include/editeng/numitem.hxx4
1 files changed, 2 insertions, 2 deletions
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;}