[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - offapi/com
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Sat Jan 5 16:16:14 UTC 2019
offapi/com/sun/star/document/Settings.idl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit caae4146c36dafe578e49e803d93f50dd0de6287
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
AuthorDate: Sat Jan 5 10:17:40 2019 +0100
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sat Jan 5 17:15:54 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/65887
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.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