From 9feea2ecc59c6daa42dece6c30cf33f5e7df7561 Mon Sep 17 00:00:00 2001 From: umutbayramoglu Date: Mon, 7 Dec 2020 20:37:42 +0000 Subject: tdf#96505 : Get rid of cargo cult long integer literals Change-Id: I7b269fb5bafceba071ebe649a696ef61301c4018 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107366 Tested-by: Jenkins Reviewed-by: Stephan Bergmann Reviewed-by: Tor Lillqvist --- svl/unx/source/svdde/ddedummy.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svl') diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx index 98942d410e05..03e423d47b3f 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -74,7 +74,7 @@ DdeData& DdeData::operator=(DdeData&&) noexcept tools::Long DdeData::getSize() const { - return 0L; + return 0; } void const * DdeData::getData() const @@ -86,7 +86,7 @@ struct DdeImp {}; tools::Long DdeConnection::GetError() const { - return 0L; + return 0; } DdeConnection::DdeConnection( SAL_UNUSED_PARAMETER const OUString&, SAL_UNUSED_PARAMETER const OUString& ) -- cgit