summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-01-05 10:17:40 +0100
committerTomaž Vajngerl <quikee@gmail.com>2019-01-05 16:57:31 +0100
commite074b7553ff10beaf9ef36d0757e71bc3b1ca694 (patch)
tree83dc2e19e20b18976117010aba6244faf6c22d20 /offapi
parent195f05311277c38dadc8894ee09b3c1cabc0e6e6 (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')
-rw-r--r--offapi/com/sun/star/document/Settings.idl6
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;
};