diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-01 11:31:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-03 11:14:44 +0100 |
commit | a6e682faa612fdb2b669ceaae8c9c3f4964c6b29 (patch) | |
tree | f6cb3ed6cb2a3ccc1931b7c261841e5b3b151615 /include/tools | |
parent | 518a8a12e3aa482948da15e808626c2efbd06d88 (diff) |
find symbols that can be private
update the script and make private standalone functions
Change-Id: Icb26ce258107700c90f89ad4e0d3329d075a2eb1
Reviewed-on: https://gerrit.libreoffice.org/81879
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/stream.hxx | 2 | ||||
-rw-r--r-- | include/tools/tenccvt.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index 69679f7ef33e..33b2e986b573 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -480,7 +480,7 @@ inline std::size_t write_uInt16s_FromOUString(SvStream& rStrm, /// Attempt to write a pascal-style length (of type prefix) prefixed sequence /// of 16bit units from an OUString, returned value is number of bytes written /// (including byte-count of prefix) -TOOLS_DLLPUBLIC std::size_t write_uInt32_lenPrefixed_uInt16s_FromOUString(SvStream& rStrm, +std::size_t write_uInt32_lenPrefixed_uInt16s_FromOUString(SvStream& rStrm, const OUString &rStr); /// Attempt to write a pascal-style length (of type prefix) prefixed sequence diff --git a/include/tools/tenccvt.hxx b/include/tools/tenccvt.hxx index 496b8e499b55..4d1cdcff3177 100644 --- a/include/tools/tenccvt.hxx +++ b/include/tools/tenccvt.hxx @@ -37,7 +37,7 @@ TOOLS_DLLPUBLIC rtl_TextEncoding GetExtendedTextEncoding( rtl_TextEncoding eEnco /// if the given encoding is an multi-byte encoding (which allows more than /// one byte per char, e.g. UTF-8 or Shift-JIS), a one-byte encoding /// is returned (normally windows-1252). -TOOLS_DLLPUBLIC rtl_TextEncoding GetOneByteTextEncoding( rtl_TextEncoding eEncoding ); +rtl_TextEncoding GetOneByteTextEncoding( rtl_TextEncoding eEncoding ); TOOLS_DLLPUBLIC rtl_TextEncoding GetSOLoadTextEncoding( rtl_TextEncoding eEncoding ); TOOLS_DLLPUBLIC rtl_TextEncoding GetSOStoreTextEncoding( rtl_TextEncoding eEncoding ); |