summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorGökhan Özeloğlu <gozeloglu@gmail.com>2020-11-29 19:09:21 +0000
committerTor Lillqvist <tml@collabora.com>2020-12-03 23:35:48 +0100
commit561e5559bb68242c7f785f0ca3bee3eb12b58963 (patch)
tree4b7ae8aeb3130904ebffd6bac9dafd4dec2d9afd /svl
parentf0878173e1963cf8db5f60ced6d19da24e18bc41 (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.cxx2
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