diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-26 11:12:03 +0100 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-01-27 08:48:17 +0100 |
commit | 73ded2398e2e99f6604f6b76d4129163fffd462f (patch) | |
tree | f5124d7e3b7bdfe6e6610ce516560f22e368af25 | |
parent | 72c68a3d1768ea2e05671aee3b2a0db8d87c9e86 (diff) |
Fix typos
Change-Id: Id1a19f2c8b44131773d4d5270a607c1907b16597
Reviewed-on: https://gerrit.libreoffice.org/48684
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jens Carl <j.carl43@gmx.de>
17 files changed, 29 insertions, 29 deletions
diff --git a/extensions/qa/integration/extensions/ServicesHandler.java b/extensions/qa/integration/extensions/ServicesHandler.java index 4382c84f4067..6152a3befa23 100644 --- a/extensions/qa/integration/extensions/ServicesHandler.java +++ b/extensions/qa/integration/extensions/ServicesHandler.java @@ -94,12 +94,12 @@ public class ServicesHandler implements XPropertyHandler public void addEventListener(com.sun.star.lang.XEventListener _eventListener) { - // ingnoring this + // ignoring this } public void addPropertyChangeListener(com.sun.star.beans.XPropertyChangeListener _propertyChangeListener) throws com.sun.star.lang.NullPointerException { - // ingnoring this + // ignoring this } public Object convertToControlValue(String _propertyName, Object _propertyValue, com.sun.star.uno.Type type) throws com.sun.star.beans.UnknownPropertyException diff --git a/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java b/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java index a0bcdcb9921d..0a2266685995 100644 --- a/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java +++ b/filter/qa/complex/filter/misc/FinalizedMandatoryTest.java @@ -97,7 +97,7 @@ public class FinalizedMandatoryTest Object oInterface = xMSF.createInstance(serviceName); - assertNotNull("Service wan't created", oInterface); + assertNotNull("Service wasn't created", oInterface); return (XInterface) oInterface; } diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java index 8f329246eec8..1095ef9a035f 100644 --- a/framework/qa/complex/framework/autosave/Protocol.java +++ b/framework/qa/complex/framework/autosave/Protocol.java @@ -725,7 +725,7 @@ public class Protocol extends JComponent /** - * it trys to convert the given any into a suitable string notation .-) + * it tries to convert the given any into a suitable string notation .-) */ private synchronized void impl_logAny( /*OUT*/ StringBuffer sOut , /*IN */ Object aAny ) diff --git a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java index 6e6a35a8a905..89e4b10880ca 100644 --- a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java +++ b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java @@ -140,7 +140,7 @@ public final class java_environment implements IEnvironment { // Java side, and recorded in the java_environment. The same OID is then // bridged in over another bridge B. If there were only one // java_environment shared by both bridges, the proxy from bridge A would be - // reused. If now bridge A is taken down programatically (e.g., because + // reused. If now bridge A is taken down programmatically (e.g., because // some controlling code somehow deduced that no objects are mapped over // that bridge any longer), but the proxy is still used by bridge B, using // the proxy would now result in errors. The explicit API to control diff --git a/qadevOOo/tests/java/ifc/awt/_XScrollBar.java b/qadevOOo/tests/java/ifc/awt/_XScrollBar.java index 8b0e0916e7f8..5dfae24fad4b 100644 --- a/qadevOOo/tests/java/ifc/awt/_XScrollBar.java +++ b/qadevOOo/tests/java/ifc/awt/_XScrollBar.java @@ -52,7 +52,7 @@ public class _XScrollBar extends MultiMethodTest { public void _removeAdjustmentListener() { //this method is checked in addAjustmentListener - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("addAdjustmentListener()"); tRes.tested("removeAdjustmentListener()", true); @@ -67,7 +67,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getBlockIncrement() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setBlockIncrement()"); tRes.tested("getBlockIncrement()", true); @@ -82,7 +82,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getLineIncrement() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setLineIncrement()"); tRes.tested("getLineIncrement()", true); @@ -97,7 +97,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getMaximum() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setMaximum()"); tRes.tested("getMaximum()", true); @@ -112,7 +112,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getOrientation() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setOrientation()"); tRes.tested("getOrientation()", true); @@ -128,7 +128,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getValue() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setValue()"); tRes.tested("getValue()", true); @@ -143,7 +143,7 @@ public class _XScrollBar extends MultiMethodTest { public void _getVisibleSize() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setVisibleSize()"); tRes.tested("getVisibleSize()", true); diff --git a/qadevOOo/tests/java/ifc/awt/_XSpinValue.java b/qadevOOo/tests/java/ifc/awt/_XSpinValue.java index 4cf3e195650e..bc19d4fdaba7 100644 --- a/qadevOOo/tests/java/ifc/awt/_XSpinValue.java +++ b/qadevOOo/tests/java/ifc/awt/_XSpinValue.java @@ -51,7 +51,7 @@ public class _XSpinValue extends MultiMethodTest { public void _removeAdjustmentListener() { //this method is checked in addAjustmentListener - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("addAdjustmentListener()"); tRes.tested("removeAdjustmentListener()", true); @@ -66,7 +66,7 @@ public class _XSpinValue extends MultiMethodTest { public void _getSpinIncrement() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setSpinIncrement()"); tRes.tested("getSpinIncrement()", true); @@ -82,7 +82,7 @@ public class _XSpinValue extends MultiMethodTest { public void _getMaximum() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setMaximum()"); tRes.tested("getMaximum()", true); @@ -97,7 +97,7 @@ public class _XSpinValue extends MultiMethodTest { public void _getMinimum() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setMinimum()"); tRes.tested("getMinimum()", true); @@ -118,7 +118,7 @@ public class _XSpinValue extends MultiMethodTest { public void _getOrientation() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setOrientation()"); tRes.tested("getOrientation()", true); @@ -134,7 +134,7 @@ public class _XSpinValue extends MultiMethodTest { public void _getValue() { //this method is checked in the corresponding set method - //so that method is requiered here and if it works + //so that method is required here and if it works //this method is given OK too requiredMethod("setValue()"); tRes.tested("getValue()", true); diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java index ffbec7a34855..e3d7b29f6914 100644 --- a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboard.java @@ -56,7 +56,7 @@ public class _XClipboard extends MultiMethodTest { } /** - * Simpliest <code>XTransferable</code> interface implementation. + * Simplest <code>XTransferable</code> interface implementation. */ static class MyTransferable implements XTransferable { public Object getTransferData(DataFlavor dataFlavor) { diff --git a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java index 49236c8811de..b26e89333e40 100644 --- a/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java +++ b/qadevOOo/tests/java/ifc/datatransfer/clipboard/_XClipboardNotifier.java @@ -60,7 +60,7 @@ public class _XClipboardNotifier extends MultiMethodTest { } /** - * Simpliest <code>XTransferable</code> interface implementation + * Simplest <code>XTransferable</code> interface implementation * which supports "text/html" data type. */ static class MyTransferable implements XTransferable { diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java index e28fdc06ba4b..b24a951c30b3 100644 --- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java +++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java @@ -374,7 +374,7 @@ public class GenericModelTest extends TestCase { XControlShape aShape = null; XMultiServiceFactory xMSF = Param.getMSF(); - log.println("adding contol shape '" + m_kindOfControl + "'"); + log.println("adding control shape '" + m_kindOfControl + "'"); aShape = FormTools.createControlShape(m_xTextDoc, 3000, 4500, 15000, 10000, m_kindOfControl); diff --git a/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java b/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java index d9c369bab452..fe155bba8758 100644 --- a/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScCellCursorObj.java @@ -282,7 +282,7 @@ public class ScCellCursorObj extends TestCase { if (res) { out.println("Sorted correctly"); } else { - out.println("Sorted uncorrectly"); + out.println("Sorted incorrectly"); } return res; diff --git a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java index 0f23744a759c..c37e04015c31 100644 --- a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java @@ -267,7 +267,7 @@ public class ScCellRangeObj extends TestCase { if (res) { out.println("Sorted correctly"); } else { - out.println("Sorted uncorrectly"); + out.println("Sorted incorrectly"); } return res; diff --git a/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java b/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java index e07246774ceb..f1e79ed4904b 100644 --- a/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScTabViewObj.java @@ -188,7 +188,7 @@ public class ScTabViewObj extends TestCase { XForm myForm = null; String kindOfControl="CommandButton"; XShape aShape = null; - log.println("adding contol shape '" + kindOfControl + "'"); + log.println("adding control shape '" + kindOfControl + "'"); XComponent oComp = UnoRuntime.queryInterface(XComponent.class, xSpreadsheetDoc) ; aShape = FormTools.createControlShape(oComp, 3000, 4500, 15000, 10000, kindOfControl); diff --git a/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java b/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java index 9647437c0fb4..436901258d98 100644 --- a/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScTableSheetObj.java @@ -372,7 +372,7 @@ public class ScTableSheetObj extends TestCase { if (res) { out.println("Sorted correctly"); } else { - out.println("Sorted uncorrectly"); + out.println("Sorted incorrectly"); } return res; diff --git a/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java b/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java index 4eb687bf7490..133ca3ec32c3 100644 --- a/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScViewPaneObj.java @@ -129,7 +129,7 @@ public class ScViewPaneObj extends TestCase { XForm myForm = null; String kindOfControl="CommandButton"; XShape aShape = null; - log.println("adding contol shape '" + kindOfControl + "'"); + log.println("adding control shape '" + kindOfControl + "'"); XComponent oComp = UnoRuntime.queryInterface(XComponent.class, xSpreadsheetDoc) ; aShape = FormTools.createControlShape(oComp, 3000, 4500, 15000, 10000, kindOfControl); diff --git a/qadevOOo/tests/java/mod/_sw/SwXTextTable.java b/qadevOOo/tests/java/mod/_sw/SwXTextTable.java index 7e52e7383a4d..2ff21ff52e45 100644 --- a/qadevOOo/tests/java/mod/_sw/SwXTextTable.java +++ b/qadevOOo/tests/java/mod/_sw/SwXTextTable.java @@ -218,7 +218,7 @@ public class SwXTextTable extends TestCase { if (res) { out.println("Sorted correctly"); } else { - out.println("Sorted uncorrectly"); + out.println("Sorted incorrectly"); } return res; diff --git a/qadevOOo/tests/java/mod/_sw/SwXTextView.java b/qadevOOo/tests/java/mod/_sw/SwXTextView.java index bbb8d6662d46..986e295916a1 100644 --- a/qadevOOo/tests/java/mod/_sw/SwXTextView.java +++ b/qadevOOo/tests/java/mod/_sw/SwXTextView.java @@ -205,7 +205,7 @@ public class SwXTextView extends TestCase { XForm myForm = null; String kindOfControl="CommandButton"; XShape aShape = null; - log.println("adding contol shape '" + kindOfControl + "'"); + log.println("adding control shape '" + kindOfControl + "'"); aShape = FormTools.createControlShape(xTextDoc, 3000, 4500, 15000, 10000, kindOfControl); diff --git a/toolkit/test/accessibility/ov/ListeningObjectView.java b/toolkit/test/accessibility/ov/ListeningObjectView.java index 32bde199d9f6..63b5f8ff7a06 100644 --- a/toolkit/test/accessibility/ov/ListeningObjectView.java +++ b/toolkit/test/accessibility/ov/ListeningObjectView.java @@ -25,7 +25,7 @@ import com.sun.star.accessibility.XAccessibleEventListener; import com.sun.star.lang.EventObject; import com.sun.star.uno.UnoRuntime; -/** Base class for object views that regsiters as accessibility event +/** Base class for object views that registers as accessibility event listener. */ abstract class ListeningObjectView |