summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2016-09-29 10:34:07 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-09-29 09:33:37 +0000
commitd77a23f8bb017024aefa63defbc64b1f7c05cda2 (patch)
tree07a6a2c21a071ea098ce7536b3bd225a80093292 /odk
parent481c3a9dd45414662d04837b60743bf0e7556165 (diff)
tdf#95386 Remove remaining mentions of Help Agent
Replace it with the Help on Help command Change-Id: Ia454a2f6a123b4fb68fda1eae1e07e99ba81487f Reviewed-on: https://gerrit.libreoffice.org/29381 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java b/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
index 524a2ae74dd2..642c97890d55 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
@@ -70,7 +70,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor {
com.sun.star.text.XTextDocument xDoc =UnoRuntime.queryInterface(com.sun.star.text.XTextDocument.class,
xComponent);
- String infoMsg = "All context menus of the created document frame contains now a 'Help' entry with the submenus 'Content', 'Help Agent' and 'Tips'.\n\nPress 'Return' in the shell to remove the context menu interceptor and finish the example!";
+ String infoMsg = "All context menus of the created document frame contains now a 'Help' entry with the submenus 'Content', 'Help on Help' and 'Tips'.\n\nPress 'Return' in the shell to remove the context menu interceptor and finish the example!";
xDoc.getText().setString(infoMsg);
// ensure that the document content is optimal visible
@@ -101,7 +101,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor {
com.sun.star.ui.XContextMenuInterceptor.class, aContextMenuInterceptor );
xContextMenuInterception.registerContextMenuInterceptor( xContextMenuInterceptor );
- System.out.println( "\n ... all context menus of the created document frame contains now a 'Help' entry with the\n submenus 'Content', 'Help Agent' and 'Tips'.\n\nPress 'Return' to remove the context menu interceptor and finish the example!");
+ System.out.println( "\n ... all context menus of the created document frame contains now a 'Help' entry with the\n submenus 'Content', 'Help on Help' and 'Tips'.\n\nPress 'Return' to remove the context menu interceptor and finish the example!");
java.io.BufferedReader reader
= new java.io.BufferedReader(new java.io.InputStreamReader(System.in));
@@ -196,14 +196,14 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor {
// insert menu entry to sub menu
xSubMenuContainer.insertByIndex( 0, xMenuEntry );
- // intialize help/help agent
+ // intialize help/help on help
xMenuEntry = UnoRuntime.queryInterface(
com.sun.star.beans.XPropertySet.class,
xMenuElementFactory.createInstance(
"com.sun.star.ui.ActionTrigger" ));
- xMenuEntry.setPropertyValue( "Text", "Help Agent" );
- xMenuEntry.setPropertyValue( "CommandURL", "slot:5962" );
- xMenuEntry.setPropertyValue( "HelpURL", "5962" );
+ xMenuEntry.setPropertyValue("Text", "Help on Help");
+ xMenuEntry.setPropertyValue("CommandURL", "slot:5400");
+ xMenuEntry.setPropertyValue("HelpURL", "5400");
// insert menu entry to sub menu
xSubMenuContainer.insertByIndex( 1, xMenuEntry );