[Libreoffice-commits] core.git: offapi/com
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Jan 5 15:57:52 UTC 2019
offapi/com/sun/star/document/Settings.idl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit e074b7553ff10beaf9ef36d0757e71bc3b1ca694
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
AuthorDate: Sat Jan 5 10:17:40 2019 +0100
Commit: Tomaž Vajngerl <quikee at gmail.com>
CommitDate: Sat Jan 5 16:57:31 2019 +0100
[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 at gmail.com>
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;
};
More information about the Libreoffice-commits
mailing list