diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-03-18 11:12:03 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-03-18 11:12:03 +0000 |
commit | 6dc3b0d1bae5881d08bc022336cd04ea6763d4a1 (patch) | |
tree | 35946120bea8d2e4c033f802c0dc5eedee92ec19 /scripting/examples | |
parent | 1607eebdd3df4ce77b2cc2c1f6c33805958baa36 (diff) |
INTEGRATION: CWS sb83 (1.3.144); FILE MERGED
2008/01/23 15:32:43 sb 1.3.144.1: #i84200# access files in various layers via explicit (OOO|BRAND)_BASE_DIR expansions
Diffstat (limited to 'scripting/examples')
-rw-r--r-- | scripting/examples/beanshell/Highlight/ShowDialog.bsh | 2 | ||||
-rw-r--r-- | scripting/examples/javascript/Highlight/ShowDialog.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripting/examples/beanshell/Highlight/ShowDialog.bsh b/scripting/examples/beanshell/Highlight/ShowDialog.bsh index d8c62d3d710e..e632c8f212c0 100644 --- a/scripting/examples/beanshell/Highlight/ShowDialog.bsh +++ b/scripting/examples/beanshell/Highlight/ShowDialog.bsh @@ -38,7 +38,7 @@ boolean tryLoadingLibrary( xmcf, context, name ) } libURL = xme.expandMacros( - "${$SYSBINDIR/" + bootstrapName + "::BaseInstallation}" + + "${$BRAND_BASE_DIR/program/" + bootstrapName + "::BaseInstallation}" + "/share/basic/ScriptBindingLibrary/" + name.toLowerCase() + ".xlb/"); diff --git a/scripting/examples/javascript/Highlight/ShowDialog.js b/scripting/examples/javascript/Highlight/ShowDialog.js index fa111e17e474..a6f9759d9a18 100644 --- a/scripting/examples/javascript/Highlight/ShowDialog.js +++ b/scripting/examples/javascript/Highlight/ShowDialog.js @@ -32,7 +32,7 @@ function tryLoadingLibrary( xmcf, context, name ) } libURL = xme.expandMacros( - "${$SYSBINDIR/" + bootstrapName + "::BaseInstallation}" + + "${$BRAND_BASE_DIR/program/" + bootstrapName + "::BaseInstallation}" + "/share/basic/ScriptBindingLibrary/" + name.toLowerCase() + ".xlb/"); |