diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-28 20:32:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-29 13:15:28 +0100 |
commit | 5e55f7a54170b25aaf82520c1cde307ece362eef (patch) | |
tree | 5e8a2d47650735c860b5a0054fa0d19cf2312d59 /svtools | |
parent | de62d0c77e2f9e24f72fd638cb5c5e365ff164b5 (diff) |
make some function symbols module private
improve the script to filter out more noise generated by library symbols
Change-Id: I22bf6037d56bc4015001825c3fb3b21a39d85e07
Reviewed-on: https://gerrit.libreoffice.org/84022
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/misc/sampletext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/misc/sampletext.cxx b/svtools/source/misc/sampletext.cxx index 23d4f237b73a..1d85d4a94d87 100644 --- a/svtools/source/misc/sampletext.cxx +++ b/svtools/source/misc/sampletext.cxx @@ -530,7 +530,7 @@ OUString makeShortRepresentativeTextForScript(UScriptCode eScript) return sSampleText; } -OUString makeRepresentativeTextForScript(UScriptCode eScript) +static OUString makeRepresentativeTextForScript(UScriptCode eScript) { OUString sSampleText; switch (eScript) @@ -602,7 +602,7 @@ OUString makeShortMinimalTextForScript(UScriptCode eScript) return sSampleText; } -OUString makeMinimalTextForScript(UScriptCode eScript) +static OUString makeMinimalTextForScript(UScriptCode eScript) { return makeShortMinimalTextForScript(eScript); } @@ -615,7 +615,7 @@ OUString makeMinimalTextForScript(UScriptCode eScript) //Currently we fall back to makeShortRepresentativeTextForScript when we don't //have suitable strings -OUString makeRepresentativeTextForLanguage(LanguageType eLang) +static OUString makeRepresentativeTextForLanguage(LanguageType eLang) { OUString sRet; LanguageType pri = primary(eLang); |