summaryrefslogtreecommitdiff
path: root/scripting/examples
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-03-18 11:12:03 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-03-18 11:12:03 +0000
commit94948d5c579d83b208cc8df5275426c66b08f435 (patch)
tree83208925946d7ef1c496fa93fc851e227e1f8428 /scripting/examples
parent9e2f24866768b113719cf53288de06e250437aa5 (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.bsh2
-rw-r--r--scripting/examples/javascript/Highlight/ShowDialog.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripting/examples/beanshell/Highlight/ShowDialog.bsh b/scripting/examples/beanshell/Highlight/ShowDialog.bsh
index d8c62d3d71..e632c8f212 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 fa111e17e4..a6f9759d9a 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/");