diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-02-18 08:19:23 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2019-02-18 09:22:07 +0100 |
commit | 9fe1eefe256c30ea6bb207d4068e815ebdc04efe (patch) | |
tree | 67071d6c92ab0c45762af64b6ccb435bdeea815b /scripting | |
parent | ea3c25358e3136cf900bc4e7d1bd6387dcca7883 (diff) |
Fix product name
Change-Id: I35ac8f6ad54c7990bd5fb24dc0a30ebb8e1e8254
Reviewed-on: https://gerrit.libreoffice.org/67949
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/examples/beanshell/Highlight/ButtonPressHandler.bsh | 2 | ||||
-rw-r--r-- | scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripting/examples/beanshell/Highlight/ButtonPressHandler.bsh b/scripting/examples/beanshell/Highlight/ButtonPressHandler.bsh index d9c8ee32ccc3..ac6efacce5d3 100644 --- a/scripting/examples/beanshell/Highlight/ButtonPressHandler.bsh +++ b/scripting/examples/beanshell/Highlight/ButtonPressHandler.bsh @@ -119,5 +119,5 @@ else replaceable.replaceAll(descriptor); } -// BeanShell OpenOffice.org scripts should always return 0 +// BeanShell scripts in LibreOffice should always return 0 return 0; diff --git a/scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh b/scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh index a0c49a2e240c..3bf6d22a3c47 100644 --- a/scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh +++ b/scripting/java/com/sun/star/script/framework/provider/beanshell/template.bsh @@ -61,5 +61,5 @@ xText = xTextDoc.getText(); xTextRange = xText.getEnd(); xTextRange.setString( "Hello World (in BeanShell)" ); -// BeanShell OpenOffice.org scripts should always return 0 +// BeanShell scripts in LibreOffice should always return 0 return 0; |