diff options
author | Gökhan Özeloğlu <gozeloglu@gmail.com> | 2020-11-29 19:09:21 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2020-12-03 23:35:48 +0100 |
commit | 561e5559bb68242c7f785f0ca3bee3eb12b58963 (patch) | |
tree | 4b7ae8aeb3130904ebffd6bac9dafd4dec2d9afd /svl | |
parent | f0878173e1963cf8db5f60ced6d19da24e18bc41 (diff) |
tdf#96505: Get rid of cargo cult long integer literals
Change-Id: I7226f93a87e0b31634a3c0942f3f5ec8778161fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106843
Tested-by: Jenkins
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/svdde/ddesvr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx index fe0e5c59f41b..4893fdb53e61 100644 --- a/svl/source/svdde/ddesvr.cxx +++ b/svl/source/svdde/ddesvr.cxx @@ -402,7 +402,7 @@ DdeService::DdeService( const OUString& rService ) DdeInternal::SvrCallback, APPCLASS_STANDARD | CBF_SKIP_REGISTRATIONS | - CBF_SKIP_UNREGISTRATIONS, 0L ) ); + CBF_SKIP_UNREGISTRATIONS, 0 ) ); pInst->pServicesSvr = new DdeServices; } else |