diff options
author | umutbayramoglu <umut265@gmail.com> | 2020-12-07 20:37:42 +0000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-01-05 08:36:28 +0100 |
commit | 9feea2ecc59c6daa42dece6c30cf33f5e7df7561 (patch) | |
tree | 35400e73889c456041b13e37454097283423c7ec /svl | |
parent | bf81aa59d86ef749dc37cdd49c6fc745376f857d (diff) |
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 <sbergman@redhat.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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& ) |