diff options
author | udareechk <udareeck@gmail.com> | 2017-09-21 01:30:46 +0530 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-10-23 16:51:09 +0200 |
commit | 022b1b2a40fcaf8d201081dead44c1d3346d1972 (patch) | |
tree | ceb0671118004125c35c157978080adbd93edcaf /svx | |
parent | f68c1a0f03b974839b02cbff400f1a2785489c87 (diff) |
tdf#96505 Get rid of cargo cult long integer literals
Removed 0L, 1L and 2L
Change-Id: Icb38de1cdd8e1215a86118b0c8af993025fd790e
Reviewed-on: https://gerrit.libreoffice.org/42567
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/gallery2/galtheme.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx index fa7d6971207f..4ae50c793001 100644 --- a/svx/source/gallery2/galtheme.cxx +++ b/svx/source/gallery2/galtheme.cxx @@ -1378,7 +1378,7 @@ SvStream& GalleryTheme::ReadData( SvStream& rIStm ) rIStm.ReadUInt16( nTmp16 ); } - if( nCount <= ( 1L << 14 ) ) + if( nCount <= ( 1 << 14 ) ) { GalleryObject* pObj; INetURLObject aRelURL1( GetParent()->GetRelativeURL() ); |