diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-01-05 10:17:40 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-01-05 16:57:31 +0100 |
commit | e074b7553ff10beaf9ef36d0757e71bc3b1ca694 (patch) | |
tree | 83dc2e19e20b18976117010aba6244faf6c22d20 /offapi/com | |
parent | 195f05311277c38dadc8894ee09b3c1cabc0e6e6 (diff) |
[API CHANGE] Change the type of Embed*ScriptFonts props to bool
By mistake EmbedLatinScriptFonts, EmbedAsianScriptFonts and
EmbedComplexScriptFonts properties were using the type short in
the Settings.idl, but everywhere in the code the props were already
using the type bool as intended. This change fixes this.
Change-Id: Idc717b592477ada3ea968e08a5f2593b92d2f454
Reviewed-on: https://gerrit.libreoffice.org/65886
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/document/Settings.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/document/Settings.idl b/offapi/com/sun/star/document/Settings.idl index d9c8164fe306..55ece20e57e4 100644 --- a/offapi/com/sun/star/document/Settings.idl +++ b/offapi/com/sun/star/document/Settings.idl @@ -270,19 +270,19 @@ published service Settings @since LibreOffice 6.2 */ - [optional, property] short EmbedLatinScriptFonts; + [optional, property] boolean EmbedLatinScriptFonts; /** Whether to embed Asian script fonts. @since LibreOffice 6.2 */ - [optional, property] short EmbedAsianScriptFonts; + [optional, property] boolean EmbedAsianScriptFonts; /** Whether to embed Complex script fonts. @since LibreOffice 6.2 */ - [optional, property] short EmbedComplexScriptFonts; + [optional, property] boolean EmbedComplexScriptFonts; }; |