diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-31 09:09:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-31 13:17:29 +0100 |
commit | b3ebd1ed63bba9824224c8bb76ab43d4de1cd004 (patch) | |
tree | 673a3c77c61b9f124e163ca1f4556c69e22926ee /sw/inc | |
parent | 149bb368fc4911d3303095c7e06d87f564942783 (diff) |
SvxNumberFormat::SetAbsLSpace takes short
...so there appears to be no good reason to cast from long etc. to sal_uInt16 first
Change-Id: I870e63404bed09cd42673692e08fc12c1c1e2fdf
Reviewed-on: https://gerrit.libreoffice.org/48958
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/swtypes.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/swtypes.hxx b/sw/inc/swtypes.hxx index f4a8138d1ed8..4422b214c29f 100644 --- a/sw/inc/swtypes.hxx +++ b/sw/inc/swtypes.hxx @@ -117,7 +117,7 @@ extern SwPathFinder *pPathFinder; // (For more levels the values have to be multiplied with the levels+1; // levels 0 ..4!) -const sal_uInt16 lBullIndent = 1440/4; +const short lBullIndent = 1440/4; const short lBullFirstLineOffset = -lBullIndent; const sal_uInt16 lNumIndent = 1440/4; const short lNumFirstLineOffset = -lNumIndent; |