diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-02 12:26:19 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-03 06:57:58 +0000 |
commit | 34e1739d56411c81359e24dce500cb54bba6c092 (patch) | |
tree | 6118d095d61d6744f8380bdbf4338cd709f5b54b /framework/qa | |
parent | bcb402298f653146af672ecfca2381062d78c6f2 (diff) |
Fix typos
Change-Id: Ieb35517ba57ca62526e84f6b6cee4c9129b4380a
Reviewed-on: https://gerrit.libreoffice.org/34805
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/qa')
3 files changed, 6 insertions, 6 deletions
diff --git a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java index 6b3317dc79b1..f7109c1bf538 100644 --- a/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java +++ b/framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java @@ -106,7 +106,7 @@ public class CheckContextMenuInterceptor { System.out.println(" **** Context Menu Interceptor *** "); - // intialize the test document + // initialize the test document xDrawDoc = DrawTools.createDrawDoc(xMSF); SOfficeFactory SOF = SOfficeFactory.getFactory(xMSF); diff --git a/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java b/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java index eb0060d07f7a..fdf2259c2f88 100644 --- a/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java +++ b/framework/qa/complex/contextMenuInterceptor/ContextMenuInterceptor.java @@ -60,7 +60,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor com.sun.star.container.XIndexContainer xSubMenuContainer = UnoRuntime.queryInterface(com.sun.star.container.XIndexContainer.class, xMenuElementFactory.createInstance("com.sun.star.ui.ActionTriggerContainer")); - // intialize root menu entry "Help" + // initialize root menu entry "Help" xRootMenuEntry.setPropertyValue("Text", "Help"); xRootMenuEntry.setPropertyValue("CommandURL", "slot:5410"); xRootMenuEntry.setPropertyValue("HelpURL", "5410"); @@ -68,7 +68,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor xRootMenuEntry.setPropertyValue("Image", myBitmap); // create menu entries for the new sub menu - // intialize help/content menu entry + // initialize help/content menu entry // entry "Content" XPropertySet xMenuEntry = UnoRuntime.queryInterface(XPropertySet.class, xMenuElementFactory.createInstance("com.sun.star.ui.ActionTrigger")); xMenuEntry.setPropertyValue("Text", "Content"); @@ -78,7 +78,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor // insert menu entry to sub menu xSubMenuContainer.insertByIndex(0, xMenuEntry); - // intialize help/help on help + // initialize help/help on help // entry "Help on Help" xMenuEntry = UnoRuntime.queryInterface(com.sun.star.beans.XPropertySet.class, xMenuElementFactory.createInstance("com.sun.star.ui.ActionTrigger")); xMenuEntry.setPropertyValue("Text", "Help on Help"); @@ -87,7 +87,7 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor // insert menu entry to sub menu xSubMenuContainer.insertByIndex(1, xMenuEntry); - // intialize help/tips + // initialize help/tips // entry "Tips" xMenuEntry = UnoRuntime.queryInterface(com.sun.star.beans.XPropertySet.class, xMenuElementFactory.createInstance("com.sun.star.ui.ActionTrigger")); xMenuEntry.setPropertyValue("Text", "Tips"); diff --git a/framework/qa/complex/imageManager/_XInitialization.java b/framework/qa/complex/imageManager/_XInitialization.java index a272f8570a4b..07508ef3f94c 100644 --- a/framework/qa/complex/imageManager/_XInitialization.java +++ b/framework/qa/complex/imageManager/_XInitialization.java @@ -31,7 +31,7 @@ import lib.TestParameters; * <ul> * <li> <code>'XInitialization.args'</code> (of type <code>Object[]</code>): * (<b>Optional</b>) : argument for <code>initialize</code> -* method. If ommitted, zero length array is used. </li> +* method. If omitted, zero length array is used. </li> * <ul> <p> * Test is multithread compliant. <p> * Till the present time there was no need to recreate environment |