summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-01-05 10:17:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-01-05 17:15:54 +0100
commitcaae4146c36dafe578e49e803d93f50dd0de6287 (patch)
tree112f1f6e6c35fed879635e2ae17ce6922758e3a8 /offapi
parent7ca6bd053869a84d18bcce2b3f08a27a6ad785d9 (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/65887 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.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;
};