diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2017-07-05 17:07:08 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-07-10 15:13:37 +0200 |
commit | c9f6bd6a714b634c1f366a525cc3571116c3f9f5 (patch) | |
tree | 297523f184425a522d7bf37904356cfe0c846bdf /sc/source/ui/src | |
parent | 963a49a4684d1f012c547bb7a626c394abc27dcc (diff) |
tdf#107135, add missing ODFF function REPLACEB.
Change-Id: I8d782b109eb390838b6c4f3a85e9b344ecef87ec
Reviewed-on: https://gerrit.libreoffice.org/39606
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sc/source/ui/src')
-rw-r--r-- | sc/source/ui/src/scfuncs.src | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sc/source/ui/src/scfuncs.src b/sc/source/ui/src/scfuncs.src index 645c377c635b..6f472189a94a 100644 --- a/sc/source/ui/src/scfuncs.src +++ b/sc/source/ui/src/scfuncs.src @@ -4856,5 +4856,20 @@ StringArray SC_OPCODE_ROUNDSIG+RID_SC_FUNC_DESCRIPTIONS_START < "The number of significant digits to which value is to be rounded." ; >; }; }; +StringArray SC_OPCODE_REPLACEB+RID_SC_FUNC_DESCRIPTIONS_START +{ + ItemList [ en-US ] = + { + < "Replaces characters within a text string with a different text string, with DBCS." ; >; + < "Text" ; >; + < "The text in which some characters are to be replaced." ; >; + < "position" ; >; + < "The character position from which text is to be replaced." ; >; + < "length" ; >; + < "The number of characters to be replaced." ; >; + < "new text" ; >; + < "The text to be inserted." ; >; + }; +}; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |