Kaydet (Commit) e074b755 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl Kaydeden (comit) Tomaž Vajngerl

[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: 's avatarTomaž Vajngerl <quikee@gmail.com>
üst 195f0531
......@@ -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;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment