diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2020-09-09 16:19:05 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2020-09-10 09:27:47 +0200 |
commit | 37ec75564d18f50e656a78bf046e6e86a3e914c1 (patch) | |
tree | a45284b76333bee9730fc0b495dbe8eaf3e8a021 /sc/sdi/app.sdi | |
parent | 671109d11fcdeb61b5e8a7c763519bdf1f16dd6b (diff) |
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 <momonasmon@gmail.com>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sc/sdi/app.sdi')
-rw-r--r-- | sc/sdi/app.sdi | 20 |
1 files changed, 8 insertions, 12 deletions
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; ] } |