diff options
author | udareechk <udareeck@gmail.com> | 2017-09-21 21:58:22 +0530 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-10-23 14:50:01 +0200 |
commit | 1fe94cb6152737632e543ef8f8534f15203dc747 (patch) | |
tree | 780695d7792538a8d8aa484df690ba1db826e4bb /xmloff | |
parent | bafc68b9e72cab0de949a8f2bc49a832c3517623 (diff) |
tdf#96505 Get rid of cargo cult long integer literals
Removed 1L and 0L in xmloff file
Change-Id: I58c2f909495c6255be8ddc8105c2ddbfea24f543
Reviewed-on: https://gerrit.libreoffice.org/42604
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/unoatrcn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/unoatrcn.cxx b/xmloff/source/core/unoatrcn.cxx index 8ab927f9ce3d..01a3d1ff6ba4 100644 --- a/xmloff/source/core/unoatrcn.cxx +++ b/xmloff/source/core/unoatrcn.cxx @@ -243,7 +243,7 @@ OUString SAL_CALL SvUnoAttributeContainer::getImplementationName() uno::Sequence< OUString > SvUnoAttributeContainer::getSupportedServiceNames() { OUString aSN( "com.sun.star.xml.AttributeContainer" ); - uno::Sequence< OUString > aNS( &aSN, 1L ); + uno::Sequence< OUString > aNS( &aSN, 1 ); return aNS; } |