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/svtools | |
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/svtools')
-rw-r--r-- | include/svtools/sampletext.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svtools/sampletext.hxx b/include/svtools/sampletext.hxx index b9c53ad4c3d5..08ef22fdfa0b 100644 --- a/include/svtools/sampletext.hxx +++ b/include/svtools/sampletext.hxx @@ -18,20 +18,20 @@ class OutputDevice; namespace vcl { class Font; } -SVT_DLLPUBLIC UScriptCode otCoverageToScript(vcl::UnicodeCoverage::UnicodeCoverageEnum eOTCoverage); +UScriptCode otCoverageToScript(vcl::UnicodeCoverage::UnicodeCoverageEnum eOTCoverage); -SVT_DLLPUBLIC bool isSymbolFont(const vcl::Font &rFont); +bool isSymbolFont(const vcl::Font &rFont); -SVT_DLLPUBLIC bool canRenderNameOfSelectedFont(OutputDevice const &rDevice); +bool canRenderNameOfSelectedFont(OutputDevice const &rDevice); //These ones are typically for use in the font dropdown box beside the //fontname, so say things roughly like "Script/Alphabet/Name-Of-Major-Language" -SVT_DLLPUBLIC OUString makeShortRepresentativeSymbolTextForSelectedFont(OutputDevice const &rDevice); -SVT_DLLPUBLIC OUString makeShortRepresentativeTextForSelectedFont(OutputDevice const &rDevice); -SVT_DLLPUBLIC OUString makeShortRepresentativeTextForScript(UScriptCode eScript); +OUString makeShortRepresentativeSymbolTextForSelectedFont(OutputDevice const &rDevice); +OUString makeShortRepresentativeTextForSelectedFont(OutputDevice const &rDevice); +OUString makeShortRepresentativeTextForScript(UScriptCode eScript); //For the cases where the font doesn't fully support a script, but has partial support //for a useful subset -SVT_DLLPUBLIC OUString makeShortMinimalTextForScript(UScriptCode eScript); +OUString makeShortMinimalTextForScript(UScriptCode eScript); //These ones are typically for use in the font preview window in format character SVT_DLLPUBLIC OUString makeRepresentativeTextForFont(sal_Int16 nScriptType, const vcl::Font &rFont); |