[Libreoffice-commits] core.git: include/basegfx
iakarsu (via logerrit)
logerrit at kemper.freedesktop.org
Mon Feb 3 13:24:09 UTC 2020
include/basegfx/range/basicrange.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 446af1fd2b76dfe32a3f947b683a4e36122cea37
Author: iakarsu <iakarsu99 at gmail.com>
AuthorDate: Tue Jan 28 15:39:57 2020 +0300
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Mon Feb 3 14:23:35 2020 +0100
tdf#96505: Get rid of cargo cult long integer literals
Change-Id: I3917e5152036f77eb419fe658937562f5928ceff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87614
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/include/basegfx/range/basicrange.hxx b/include/basegfx/range/basicrange.hxx
index 17f31ea42f19..046dfafdd03f 100644
--- a/include/basegfx/range/basicrange.hxx
+++ b/include/basegfx/range/basicrange.hxx
@@ -297,7 +297,7 @@ namespace basegfx
{
static sal_Int32 minVal() { return SAL_MIN_INT32; };
static sal_Int32 maxVal() { return SAL_MAX_INT32; };
- static sal_Int32 neutral() { return 0L; };
+ static sal_Int32 neutral() { return 0; };
typedef sal_Int64 DifferenceType;
};
More information about the Libreoffice-commits
mailing list