source/text/sbasic/shared/CallByName.xhp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit 2d7503bd781bb3d9b4680f75b4af7141fb6295c8 Author: Stanislav Horacek <stanislav.hora...@gmail.com> AuthorDate: Sat Feb 19 18:51:15 2022 +0100 Commit: Olivier Hallot <olivier.hal...@libreoffice.org> CommitDate: Sat Feb 19 23:14:41 2022 +0100 do not localize CallType values Change-Id: Ie5d6b52da5b254945b48b7e126e56b86936456f4 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/130199 Tested-by: Jenkins Reviewed-by: Olivier Hallot <olivier.hal...@libreoffice.org> diff --git a/source/text/sbasic/shared/CallByName.xhp b/source/text/sbasic/shared/CallByName.xhp index 9a34a1883..90581cd66 100644 --- a/source/text/sbasic/shared/CallByName.xhp +++ b/source/text/sbasic/shared/CallByName.xhp @@ -34,7 +34,7 @@ <embed href="text/sbasic/shared/00000003.xhp#functvalue"/> <paragraph id="par_id3154141" role="paragraph"><emph>result</emph>: An optional variable that contains the result of the called method or property.</paragraph> - + <embed href="text/sbasic/shared/00000003.xhp#functparameters"/> <paragraph id="par_id3150448" role="paragraph"><emph>object</emph>: A Basic module, <link href="text/sbasic/shared/classmodule.xhp" name="ClassModule">ClassModule</link> instance or UNO service holding properties or methods.</paragraph> <paragraph id="par_id3150449" role="paragraph"><emph>ProcName</emph>: The <literal>Function</literal>, <literal>Sub</literal> or <literal>Property</literal> that is being called.</paragraph> @@ -47,19 +47,19 @@ <tablecell><paragraph id="par_id541644505028463" role="tablehead">CallType Description</paragraph></tablecell> </tablerow> <tablerow> - <tablecell><paragraph id="par_id621644505028464" role="tablecontent">1</paragraph></tablecell> + <tablecell><paragraph id="par_id621644505028464" role="tablecontent" localize="false">1</paragraph></tablecell> <tablecell><paragraph id="par_id661644505028464" role="tablecontent"><emph>Method</emph>: Calls a procedure as a function or a subroutine.</paragraph></tablecell> </tablerow> <tablerow> - <tablecell><paragraph id="par_id621644505028465" role="tablecontent">2</paragraph></tablecell> + <tablecell><paragraph id="par_id621644505028465" role="tablecontent" localize="false">2</paragraph></tablecell> <tablecell><paragraph id="par_id661644505028465" role="tablecontent"><emph>Get</emph>: Reads a property or variable content.</paragraph></tablecell> </tablerow> <tablerow> - <tablecell><paragraph id="par_id621644505028466" role="tablecontent">4</paragraph></tablecell> + <tablecell><paragraph id="par_id621644505028466" role="tablecontent" localize="false">4</paragraph></tablecell> <tablecell><paragraph id="par_id661644505028466" role="tablecontent"><emph>Let</emph>: Assigns a content to a <literal>Property</literal> or variable.</paragraph></tablecell> </tablerow> <tablerow> - <tablecell><paragraph id="par_id621644505028467" role="tablecontent">8</paragraph></tablecell> + <tablecell><paragraph id="par_id621644505028467" role="tablecontent" localize="false">8</paragraph></tablecell> <tablecell><paragraph id="par_id661644505028467" role="tablecontent"><emph>Set</emph>: Assigns a reference value to an <literal>Object</literal> or <literal>Variant</literal> variable.</paragraph></tablecell> </tablerow> </table> @@ -77,7 +77,7 @@ </listitem> </list> <bascode> - <paragraph role="bascode" id="bas_id861644508337698" localize="false">Sub CallByName_example</paragraph> + <paragraph role="bascode" id="bas_id861644508337698" localize="false">Sub CallByName_example</paragraph> <paragraph role="bascode" id="bas_id571644506474125" localize="false"> Const _Method = 1, _Get = 2, _Let = 4, _Set = 8</paragraph> <paragraph role="bascode" id="bas_id611644506475477" localize="false"></paragraph> <paragraph role="bascode" id="bas_id791644586147817" xml-lang="en-US"> BasicLibraries.loadLibrary("Calc") ' Calc.Maths user library.module</paragraph>