From 37ec75564d18f50e656a78bf046e6e86a3e914c1 Mon Sep 17 00:00:00 2001 From: Maxim Monastirsky Date: Wed, 9 Sep 2020 16:19:05 +0300 Subject: Remove the useless Export sdi property Maybe I'm missing something, but its usage - "if ( !GetExport() && !GetHidden() )" seems like expects it to be true and false at the same time. Anyway, there's no diff in workdir/SdiTarget after this change, so should be safe to remove. Change-Id: I6db508ff40c05dc828ffa91bb41a37c17b697503 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102345 Tested-by: Jenkins Tested-by: Maxim Monastirsky Reviewed-by: Maxim Monastirsky --- sc/sdi/app.sdi | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'sc/sdi/app.sdi') diff --git a/sc/sdi/app.sdi b/sc/sdi/app.sdi index bcf363ca5799..cae5e5d95afa 100644 --- a/sc/sdi/app.sdi +++ b/sc/sdi/app.sdi @@ -29,26 +29,22 @@ interface StarCalc [ ExecMethod = Execute ; StateMethod = GetState ; - Export = FALSE; ] SID_ATTR_LANGUAGE [ ExecMethod = Execute; StateMethod = GetState; - Export = FALSE; ] SID_ATTR_CHAR_CJK_LANGUAGE [ ExecMethod = Execute; StateMethod = GetState; - Export = FALSE; ] SID_ATTR_CHAR_CTL_LANGUAGE [ ExecMethod = Execute; StateMethod = GetState; - Export = FALSE; ] SID_CHOOSE_DESIGN [ ExecMethod = Execute; ] @@ -58,15 +54,15 @@ interface StarCalc SID_OPEN_XML_FILTERSETTINGS [ ExecMethod = Execute; ] - SID_HANGUL_HANJA_CONVERSION [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_CHINESE_CONVERSION [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_TRANSLITERATE_HALFWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_TRANSLITERATE_FULLWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_TRANSLITERATE_HIRAGANA [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_TRANSLITERATE_KATAKANA [ StateMethod = HideDisabledSlots; Export = FALSE; ] + SID_HANGUL_HANJA_CONVERSION [ StateMethod = HideDisabledSlots; ] + SID_CHINESE_CONVERSION [ StateMethod = HideDisabledSlots; ] + SID_TRANSLITERATE_HALFWIDTH [ StateMethod = HideDisabledSlots; ] + SID_TRANSLITERATE_FULLWIDTH [ StateMethod = HideDisabledSlots; ] + SID_TRANSLITERATE_HIRAGANA [ StateMethod = HideDisabledSlots; ] + SID_TRANSLITERATE_KATAKANA [ StateMethod = HideDisabledSlots; ] - SID_INSERT_RLM [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_INSERT_LRM [ StateMethod = HideDisabledSlots; Export = FALSE; ] + SID_INSERT_RLM [ StateMethod = HideDisabledSlots; ] + SID_INSERT_LRM [ StateMethod = HideDisabledSlots; ] } -- cgit