diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 14:45:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-17 08:14:31 +0200 |
commit | ff1f6a5fc25db062e9a83521a657062f62f03ba6 (patch) | |
tree | 272dfa9af5ead31b61c1be34afcaf4402ff4ad77 /svtools/source/svhtml | |
parent | 224b770fa77fe12ad5dc543ce020aca316b6558d (diff) |
remove UL/L suffixes from integer constants in initialiser/call expressions
Change-Id: Iae081567c4fa5b88edbd12cf2fbafd2b8f31b300
Reviewed-on: https://gerrit.libreoffice.org/41214
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index 1f479973497e..d576dd8fef05 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -42,9 +42,9 @@ using namespace ::com::sun::star; -const sal_Int32 MAX_LEN( 1024L ); +const sal_Int32 MAX_LEN( 1024 ); -const sal_Int32 MAX_ENTITY_LEN( 8L ); +const sal_Int32 MAX_ENTITY_LEN( 8 ); // Tables to convert option values into strings @@ -876,7 +876,7 @@ HtmlTokenId HTMLParser::GetNextRawToken() nNextCh = '<'; // Don't append string to token. - sTmpBuffer.setLength( 0L ); + sTmpBuffer.setLength( 0 ); } else { |