From 64d624b65124ac02d8ee59b135593fd9d8eb9067 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 9 Jan 2016 22:55:28 +0100 Subject: Fix typos Change-Id: I9a5940027423ff0791fa7da0b79b617412ce6b86 Reviewed-on: https://gerrit.libreoffice.org/21209 Tested-by: Jenkins Reviewed-by: Ashod Nakashian --- qadevOOo/runner/helper/OfficeWatcher.java | 2 +- qadevOOo/runner/helper/ProcessHandler.java | 6 +++--- qadevOOo/runner/util/DBTools.java | 2 +- qadevOOo/runner/util/SOfficeFactory.java | 2 +- qadevOOo/runner/util/WriterTools.java | 4 ++-- qadevOOo/runner/util/XMLTools.java | 2 +- qadevOOo/tests/java/ifc/awt/_XTabController.java | 2 +- qadevOOo/tests/java/ifc/bridge/_XUnoUrlResolver.java | 2 +- qadevOOo/tests/java/ifc/container/_XNameReplace.java | 2 +- qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java | 2 +- qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java | 2 +- qadevOOo/tests/java/ifc/form/_DataAwareControlModel.java | 2 +- qadevOOo/tests/java/ifc/form/_XSubmit.java | 2 +- qadevOOo/tests/java/ifc/frame/_XController.java | 2 +- qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java | 2 +- qadevOOo/tests/java/ifc/io/_XActiveDataControl.java | 2 +- qadevOOo/tests/java/ifc/io/_XInputStream.java | 2 +- qadevOOo/tests/java/ifc/script/_XEventAttacherManager.java | 2 +- qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java | 2 +- qadevOOo/tests/java/ifc/sheet/_XAreaLink.java | 2 +- qadevOOo/tests/java/ifc/text/_BaseIndex.java | 2 +- qadevOOo/tests/java/ifc/text/_XPagePrintable.java | 2 +- .../tests/java/ifc/ucb/_XCachedDynamicResultSetStubFactory.java | 2 +- qadevOOo/tests/java/ifc/ucb/_XContentProviderFactory.java | 2 +- qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java | 2 +- qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java | 2 +- qadevOOo/tests/java/ifc/util/_XURLTransformer.java | 2 +- qadevOOo/tests/java/ifc/view/_XScreenCursor.java | 2 +- qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java | 2 +- qadevOOo/tests/java/mod/_dbaccess/JoinViewAccessibility.java | 2 +- qadevOOo/tests/java/mod/_forms/ODatabaseForm.java | 2 +- qadevOOo/tests/java/mod/_forms/OGridControlModel.java | 2 +- qadevOOo/tests/java/mod/_forms/OListBoxModel.java | 2 +- qadevOOo/tests/java/mod/_forms/ORadioButtonModel.java | 2 +- qadevOOo/tests/java/mod/_forms/OTimeModel.java | 2 +- qadevOOo/tests/java/mod/_fps/FilePicker.java | 2 +- qadevOOo/tests/java/mod/_sc/ScAccessiblePreviewHeaderCell.java | 2 +- qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java | 2 +- qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java | 2 +- qadevOOo/tests/java/mod/_sc/ScHeaderFieldsObj.java | 2 +- qadevOOo/tests/java/mod/_sc/ScModelObj.java | 2 +- qadevOOo/tests/java/mod/_sw/SwXFootnotes.java | 2 +- 42 files changed, 45 insertions(+), 45 deletions(-) (limited to 'qadevOOo') diff --git a/qadevOOo/runner/helper/OfficeWatcher.java b/qadevOOo/runner/helper/OfficeWatcher.java index 50765a867ab0..924a9e4af6d3 100644 --- a/qadevOOo/runner/helper/OfficeWatcher.java +++ b/qadevOOo/runner/helper/OfficeWatcher.java @@ -79,7 +79,7 @@ public class OfficeWatcher extends Thread implements share.Watcher { " seconds, it probably hangs and is killed NOW."); ph.kill(); } else { - dbg("reaeched timeout but ProcessHandler is NULL"); + dbg("reached timeout but ProcessHandler is NULL"); } util.utils.pause(timeOut == 0 ? 30000 : timeOut); dbg("finished"); diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java index 607c1f21a2c2..60b31b09b34e 100644 --- a/qadevOOo/runner/helper/ProcessHandler.java +++ b/qadevOOo/runner/helper/ProcessHandler.java @@ -28,7 +28,7 @@ import lib.TestParameters; import util.PropertyName; import util.utils; -/** +/* * Class collect information from input stream in * background (separate thread) and outputs it to * some log stream. I helps to avoid buffer overflow @@ -36,7 +36,7 @@ import util.utils; * in case when handling stdout from external * Process) * - * This class is currently used by ProcesHandler + * This class is currently used by ProcessHandler * internally only. */ class Pump extends Thread @@ -161,7 +161,7 @@ public class ProcessHandler * @param envVars The specified environment variables are * set for the new process. * If log stream is null, logging is printed to stdout. - * @param timeOut When started sychronisly, the maximum time the + * @param timeOut When started synchronously, the maximum time the * process will live. When the process being destroyed * a log will be written out. It can be asked on * isTimedOut() if it has been terminated. diff --git a/qadevOOo/runner/util/DBTools.java b/qadevOOo/runner/util/DBTools.java index 4410bf2a1cf6..cc6549432154 100644 --- a/qadevOOo/runner/util/DBTools.java +++ b/qadevOOo/runner/util/DBTools.java @@ -37,7 +37,7 @@ import java.sql.DriverManager; /** * Provides useful methods for working with SOffice databases. -* Database creation, data transferring, outputting infromation. +* Database creation, data transferring, outputting information. */ public class DBTools { diff --git a/qadevOOo/runner/util/SOfficeFactory.java b/qadevOOo/runner/util/SOfficeFactory.java index 0150e3c035cb..43667d15d44c 100644 --- a/qadevOOo/runner/util/SOfficeFactory.java +++ b/qadevOOo/runner/util/SOfficeFactory.java @@ -175,7 +175,7 @@ public class SOfficeFactory { } // finished createChartDoc /** - * creates a simple TextTable defaultet to 2 rows and 2 columns + * creates a simple TextTable defaulted to 2 rows and 2 columns */ public static XTextTable createTextTable(XTextDocument xTextDoc) { diff --git a/qadevOOo/runner/util/WriterTools.java b/qadevOOo/runner/util/WriterTools.java index 4681a9963235..250ecbf6be45 100644 --- a/qadevOOo/runner/util/WriterTools.java +++ b/qadevOOo/runner/util/WriterTools.java @@ -104,8 +104,8 @@ public class WriterTools { oGObject); the_name.setName(name); } catch (Exception ex) { - System.out.println("Exception while insertin TextGraphic"); + System.out.println("Exception while inserting TextGraphic"); ex.printStackTrace(); } } -} \ No newline at end of file +} diff --git a/qadevOOo/runner/util/XMLTools.java b/qadevOOo/runner/util/XMLTools.java index 6930a96bfa6a..fc821b9ffae0 100644 --- a/qadevOOo/runner/util/XMLTools.java +++ b/qadevOOo/runner/util/XMLTools.java @@ -217,7 +217,7 @@ public class XMLTools { /** * Reset all values. This is important e.g. for test of XFilter - * interface, where 'filter()' method istbstarted twice. + * interface, where 'filter()' method is started twice. */ void reset() { docStarted = false ; diff --git a/qadevOOo/tests/java/ifc/awt/_XTabController.java b/qadevOOo/tests/java/ifc/awt/_XTabController.java index 8b649780c043..8fa384497cd3 100644 --- a/qadevOOo/tests/java/ifc/awt/_XTabController.java +++ b/qadevOOo/tests/java/ifc/awt/_XTabController.java @@ -36,7 +36,7 @@ import com.sun.star.awt.XTabControllerModel; *
  • activateTabOrder()
  • *
  • autoTabOrder()
  • *
  • getContainer()
  • -*
  • getCotrols()
  • +*
  • getControls()
  • *
  • getModel()
  • *
  • setContainer()
  • *
  • setModel()
  • diff --git a/qadevOOo/tests/java/ifc/bridge/_XUnoUrlResolver.java b/qadevOOo/tests/java/ifc/bridge/_XUnoUrlResolver.java index f8f32686ed56..16bbceb45456 100644 --- a/qadevOOo/tests/java/ifc/bridge/_XUnoUrlResolver.java +++ b/qadevOOo/tests/java/ifc/bridge/_XUnoUrlResolver.java @@ -111,7 +111,7 @@ public class _XUnoUrlResolver extends MultiMethodTest { try { // create a connection XConnection xCon = xAcc.accept(connectString); - // create a bridge over that conmnection + // create a bridge over that connection xBridge = xBrdgFctr.createBridge( "MyBridge", "urp", xCon, xInstProv); } catch (com.sun.star.lang.IllegalArgumentException e) { diff --git a/qadevOOo/tests/java/ifc/container/_XNameReplace.java b/qadevOOo/tests/java/ifc/container/_XNameReplace.java index f9b3283aadc8..0201bc5e16b4 100644 --- a/qadevOOo/tests/java/ifc/container/_XNameReplace.java +++ b/qadevOOo/tests/java/ifc/container/_XNameReplace.java @@ -59,7 +59,7 @@ import com.sun.star.uno.UnoRuntime; * INSTANCEn are n Objectrelations so that every thread can isert it's own * object. n depends on the variable THRCNT which and comes from API.INI * Some Object-Container can't replace the first that comes belong. So in -* NAMEREPLACE you can determine a containerobject, which is replaceable.

    +* NAMEREPLACE you can determine a container object, which is replaceable.

    * * Test is NOT multithread compliant.

    * After test completion object environment has to be recreated. diff --git a/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java b/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java index 3790b739f54b..93213a0d8b73 100644 --- a/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java +++ b/qadevOOo/tests/java/ifc/datatransfer/_XDataFormatTranslator.java @@ -50,7 +50,7 @@ public class _XDataFormatTranslator extends MultiMethodTest { } /** - * Gets data flavour from system data type, which was gotten + * Gets data flavor from system data type, which was gotten * from 'text/html' MIME type.

    * Has OK status if DataFlavour returned has 'text/html' MIME * type. diff --git a/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java b/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java index 2b208e4537a7..7a8193bc0b15 100644 --- a/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java +++ b/qadevOOo/tests/java/ifc/document/_XDocumentInsertable.java @@ -105,7 +105,7 @@ public class _XDocumentInsertable extends MultiMethodTest { tEnv.getObjRelation("XDocumentInsertable.Checker") ; if (checker == null) { - log.println("Relaion not found, trying to query for "+ + log.println("Relation not found, trying to query for "+ "XTextRange ...") ; range = UnoRuntime.queryInterface (XTextRange.class, oObj) ; if (range == null) { diff --git a/qadevOOo/tests/java/ifc/form/_DataAwareControlModel.java b/qadevOOo/tests/java/ifc/form/_DataAwareControlModel.java index 7cd6bf913afe..60dcd7f63187 100644 --- a/qadevOOo/tests/java/ifc/form/_DataAwareControlModel.java +++ b/qadevOOo/tests/java/ifc/form/_DataAwareControlModel.java @@ -153,7 +153,7 @@ public class _DataAwareControlModel extends MultiPropertyTest { } /** - * Forces environment recreateation. + * Forces environment recreation. */ @Override public void after() { diff --git a/qadevOOo/tests/java/ifc/form/_XSubmit.java b/qadevOOo/tests/java/ifc/form/_XSubmit.java index 2d068a1ae237..1a7213a8e3fa 100644 --- a/qadevOOo/tests/java/ifc/form/_XSubmit.java +++ b/qadevOOo/tests/java/ifc/form/_XSubmit.java @@ -130,7 +130,7 @@ public class _XSubmit extends MultiMethodTest { e.printStackTrace(log); } } else { - log.println("!!! The tested compoennt doesn't support XPropertySet "); + log.println("!!! The tested component doesn't support XPropertySet "); } oObj.submit(cntrl, new MouseEvent()); diff --git a/qadevOOo/tests/java/ifc/frame/_XController.java b/qadevOOo/tests/java/ifc/frame/_XController.java index bba3d2d5b67a..20cfa71c7867 100644 --- a/qadevOOo/tests/java/ifc/frame/_XController.java +++ b/qadevOOo/tests/java/ifc/frame/_XController.java @@ -95,7 +95,7 @@ public class _XController extends MultiMethodTest { /** * At first object relation 'FirstModel' is gotten. Then test calls the * method.

    - * Has OK status if string repersentation of an object, returned by + * Has OK status if string rapresentation of an object, returned by * the method is equal to string representation of corresponding object * relation. */ diff --git a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java index 77e96d72fa34..ba1190d5f6cb 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java +++ b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java @@ -84,7 +84,7 @@ public class _XExtendedIndexEntrySupplier extends MultiMethodTest { for (int j = 0; j < algorithms.size(); j++) { String[] algs = algorithms.get(Integer.valueOf(j)); for (int k=0;kestartedCalled, terminatedCalled, etc.) to + * (startedCalled, terminatedCalled, etc.) to * true if the appropriate method was called (for example, if * started() was called, the startedCalled * field is set). diff --git a/qadevOOo/tests/java/ifc/io/_XInputStream.java b/qadevOOo/tests/java/ifc/io/_XInputStream.java index 9bfe93b337be..90ee86afb63c 100644 --- a/qadevOOo/tests/java/ifc/io/_XInputStream.java +++ b/qadevOOo/tests/java/ifc/io/_XInputStream.java @@ -57,7 +57,7 @@ public class _XInputStream extends MultiMethodTest { int bytesReady = 0 ; /** - * Before the test, the stream writer and the data are ecxtracted from + * Before the test, the stream writer and the data are extracted from * the object relations and the data is written to the stream. */ @Override diff --git a/qadevOOo/tests/java/ifc/script/_XEventAttacherManager.java b/qadevOOo/tests/java/ifc/script/_XEventAttacherManager.java index 140cb008ae05..b0375c257a6a 100644 --- a/qadevOOo/tests/java/ifc/script/_XEventAttacherManager.java +++ b/qadevOOo/tests/java/ifc/script/_XEventAttacherManager.java @@ -175,7 +175,7 @@ public class _XEventAttacherManager extends MultiMethodTest { } /** - * Method checks that array of descriptors contains the concrete desciptor. + * Method checks that array of descriptors contains the concrete descriptor. * @param container the array of descriptors * @param evt the descriptor which presence in the array is checked * @return true if the descriptor presence in the array diff --git a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java index 717d0672d3ae..2764574bb193 100644 --- a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java +++ b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java @@ -63,7 +63,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest { private XResultSet xReSet = null; /** - * Retcieves the object relations: + * Retrieves the object relations: *

      *
    • XSingleSelectQueryAnalyzer xQueryAna
    • *
    • XPropertySet xProp
    • diff --git a/qadevOOo/tests/java/ifc/sheet/_XAreaLink.java b/qadevOOo/tests/java/ifc/sheet/_XAreaLink.java index c5026eb692f0..51adc5ef76cb 100644 --- a/qadevOOo/tests/java/ifc/sheet/_XAreaLink.java +++ b/qadevOOo/tests/java/ifc/sheet/_XAreaLink.java @@ -68,7 +68,7 @@ public class _XAreaLink extends MultiMethodTest { } /** - * Creates a new desination CellRange address and sets it for + * Creates a new destination CellRange address and sets it for * the link object.

      * After setting the DestArea, the link is refreshed and the area is * adjusted to the size of the source data. diff --git a/qadevOOo/tests/java/ifc/text/_BaseIndex.java b/qadevOOo/tests/java/ifc/text/_BaseIndex.java index 017d4a881f3d..006796724ad8 100644 --- a/qadevOOo/tests/java/ifc/text/_BaseIndex.java +++ b/qadevOOo/tests/java/ifc/text/_BaseIndex.java @@ -89,7 +89,7 @@ public class _BaseIndex extends MultiPropertyTest { * * Comparing of set and got PropertyValue arrays * is difficult because values can be changed after setting - * by service miplementation.

      + * by service implementation.

      * * Has OK status if the collection again gotten, has a * new first element (i.e. lengths of the old array and the array diff --git a/qadevOOo/tests/java/ifc/text/_XPagePrintable.java b/qadevOOo/tests/java/ifc/text/_XPagePrintable.java index 7268118dd3dc..5b1f6997849e 100644 --- a/qadevOOo/tests/java/ifc/text/_XPagePrintable.java +++ b/qadevOOo/tests/java/ifc/text/_XPagePrintable.java @@ -75,7 +75,7 @@ public class _XPagePrintable extends MultiMethodTest { } /** - * Changes a property 'IsLandscape' in existsing print settings, + * Changes a property 'IsLandscape' in existing print settings, * and sets these settings back.

      * * Has OK status if settings gotten again has the changed diff --git a/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetStubFactory.java b/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetStubFactory.java index a4ae2ba7cb76..ad7dc3aa3122 100644 --- a/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetStubFactory.java +++ b/qadevOOo/tests/java/ifc/ucb/_XCachedDynamicResultSetStubFactory.java @@ -113,7 +113,7 @@ public class _XCachedDynamicResultSetStubFactory extends MultiMethodTest { /** * Creates an instance of CachedDynamicResultSet service * which is not connected to any stub. Then tries to connect it to - * DynaminResultSet created and passed as relation. + * DynamicResultSet created and passed as relation. * Connection is checked by retrieving and comparing of row numbers * of connected set and its source set.

      * Has OK status if row numbers are equal and they are diff --git a/qadevOOo/tests/java/ifc/ucb/_XContentProviderFactory.java b/qadevOOo/tests/java/ifc/ucb/_XContentProviderFactory.java index f6cf0b7f5e62..688b2bd3567a 100644 --- a/qadevOOo/tests/java/ifc/ucb/_XContentProviderFactory.java +++ b/qadevOOo/tests/java/ifc/ucb/_XContentProviderFactory.java @@ -38,7 +38,7 @@ public class _XContentProviderFactory extends MultiMethodTest { public static XContentProviderFactory oObj = null; /** - * Creates a propvider.

      + * Creates a provider.

      * Has OK status if the returned value is not * null.

      */ diff --git a/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java b/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java index 9849f1f7f51c..3242c1071704 100644 --- a/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java +++ b/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java @@ -132,7 +132,7 @@ public class _XContentProviderManager extends MultiMethodTest { * @see #_queryContentProvider */ public void _registerContentProvider() { - // querying providfers info before inserting them, to verify results + // querying providers info before inserting them, to verify results initialProvidersInfo = oObj.queryContentProviders(); // GnomeVFSContentProvider or GIOContentProvider ?, typically null diff --git a/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java b/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java index 0d34af24ba6b..2f633122e9bd 100644 --- a/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java +++ b/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java @@ -520,7 +520,7 @@ public class _XSimpleFileAccess extends MultiMethodTest { if (oHandler == null) throw new StatusException - (Status.failed("Reelation InteractionHandler not found")); + (Status.failed("Relation InteractionHandler not found")); try { handler = UnoRuntime.queryInterface diff --git a/qadevOOo/tests/java/ifc/util/_XURLTransformer.java b/qadevOOo/tests/java/ifc/util/_XURLTransformer.java index 682804d7f7c8..57c5d9b2b7d3 100644 --- a/qadevOOo/tests/java/ifc/util/_XURLTransformer.java +++ b/qadevOOo/tests/java/ifc/util/_XURLTransformer.java @@ -418,7 +418,7 @@ public class _XURLTransformer extends MultiMethodTest { url.Complete = expectedCompleteFTP; log.println("getPresentation('" + expectedCompleteFTP + "', false): "); - // the password must be masqurade with <****> + // the password must be masquarade with <****> StringBuilder sb = new StringBuilder(); for (int n = 0 ; n < password.length(); n++){ sb.append("*"); diff --git a/qadevOOo/tests/java/ifc/view/_XScreenCursor.java b/qadevOOo/tests/java/ifc/view/_XScreenCursor.java index 45510f593b0d..3f28462dc17c 100644 --- a/qadevOOo/tests/java/ifc/view/_XScreenCursor.java +++ b/qadevOOo/tests/java/ifc/view/_XScreenCursor.java @@ -64,7 +64,7 @@ public class _XScreenCursor extends MultiMethodTest { * The following method tests are to be completed successfully before : *

        *
      • screenDown() : by default view is on the - * top of pag, thereby it's needed first to moved down.
      • + * top of pag, thereby its needed first to moved down. *
      */ public void _screenUp(){ diff --git a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java index d6e5a51d8ca6..8767e15f07d1 100644 --- a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java +++ b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java @@ -191,7 +191,7 @@ public class _XDocumentHandler extends MultiMethodTest { * * Has OK status if no exceptions occurred during * the whole transferring and if the appropriate changes - * occurred in the document where XML data was trnsfered to. + * occurred in the document where XML data was transferred to. * This check is performed by checker relation. */ public void _endDocument() { diff --git a/qadevOOo/tests/java/mod/_dbaccess/JoinViewAccessibility.java b/qadevOOo/tests/java/mod/_dbaccess/JoinViewAccessibility.java index b7d926e502e4..499779ebf629 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/JoinViewAccessibility.java +++ b/qadevOOo/tests/java/mod/_dbaccess/JoinViewAccessibility.java @@ -81,7 +81,7 @@ public class JoinViewAccessibility extends TestCase { * creates two tables in database. * Creates a new query and adds it to DefinitionContainer. * Opens the QueryComponent.with loadComponentFromURL - * and gets the object with the role UNKNOWN and the Impplementation + * and gets the object with the role UNKNOWN and the implementation * name that contains ConnectionLine * @param Param test parameters * @param log writer to log information while testing diff --git a/qadevOOo/tests/java/mod/_forms/ODatabaseForm.java b/qadevOOo/tests/java/mod/_forms/ODatabaseForm.java index 77fde0139689..327790f050a4 100644 --- a/qadevOOo/tests/java/mod/_forms/ODatabaseForm.java +++ b/qadevOOo/tests/java/mod/_forms/ODatabaseForm.java @@ -793,7 +793,7 @@ public class ODatabaseForm extends TestCase { } /** - * Dummy implemetnation. Do nothing, just log + * Dummy implementation. Do nothing, just log * @param o Ignore. */ public void disposing(EventObject o) { diff --git a/qadevOOo/tests/java/mod/_forms/OGridControlModel.java b/qadevOOo/tests/java/mod/_forms/OGridControlModel.java index bc9b964fa6b0..b440f24ce28b 100644 --- a/qadevOOo/tests/java/mod/_forms/OGridControlModel.java +++ b/qadevOOo/tests/java/mod/_forms/OGridControlModel.java @@ -153,7 +153,7 @@ public class OGridControlModel extends GenericModelTest { /** - * calls createTestEnvironment() from it's super class + * calls createTestEnvironment() from its super class * @param Param the test parameter * @param log the log writer * @return lib.TestEnvironment diff --git a/qadevOOo/tests/java/mod/_forms/OListBoxModel.java b/qadevOOo/tests/java/mod/_forms/OListBoxModel.java index f482036950a0..f829da701e63 100644 --- a/qadevOOo/tests/java/mod/_forms/OListBoxModel.java +++ b/qadevOOo/tests/java/mod/_forms/OListBoxModel.java @@ -154,7 +154,7 @@ public class OListBoxModel extends GenericModelTest { } /** - * calls createTestEnvironment() from it's super class + * calls createTestEnvironment() from its super class * This test uses not the generic implementation of checker() of its * super class. This tests uses its own implementation of checker() * to test com::sun::star::form::XUpdateBroadcaster diff --git a/qadevOOo/tests/java/mod/_forms/ORadioButtonModel.java b/qadevOOo/tests/java/mod/_forms/ORadioButtonModel.java index be0b9f9d6485..d65c07064733 100644 --- a/qadevOOo/tests/java/mod/_forms/ORadioButtonModel.java +++ b/qadevOOo/tests/java/mod/_forms/ORadioButtonModel.java @@ -134,7 +134,7 @@ public class ORadioButtonModel extends GenericModelTest { } /** - * calls createTestEnvironment() from it's super class + * calls createTestEnvironment() from its super class * @param Param the test parameter * @param log the log writer * @return lib.TestEnvironment diff --git a/qadevOOo/tests/java/mod/_forms/OTimeModel.java b/qadevOOo/tests/java/mod/_forms/OTimeModel.java index e937e6a8816d..999ae6e606ed 100644 --- a/qadevOOo/tests/java/mod/_forms/OTimeModel.java +++ b/qadevOOo/tests/java/mod/_forms/OTimeModel.java @@ -146,7 +146,7 @@ public class OTimeModel extends GenericModelTest { } /** - * calls createTestEnvironment() from it's super class + * calls createTestEnvironment() from its super class * This test uses not the generic implementation of checker() of its * super class. This tests uses its own implementation of checker() * to test com::sun::star::form::XUpdateBroadcaster diff --git a/qadevOOo/tests/java/mod/_fps/FilePicker.java b/qadevOOo/tests/java/mod/_fps/FilePicker.java index 08b8e8734255..885bef0efeee 100644 --- a/qadevOOo/tests/java/mod/_fps/FilePicker.java +++ b/qadevOOo/tests/java/mod/_fps/FilePicker.java @@ -74,7 +74,7 @@ public class FilePicker extends TestCase { *
        *
      • 'XInitialization.args' for * {@link ifc.lang._XInitialization} : argument - * for creating dialog from teamplate.
      • + * for creating dialog from template. *
      • 'XFilePickerControlAccess.ControlID' for * {@link ifc.ui.dialogs._XFilePickerControlAccess} : here * it is identifier of check box.
      • diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessiblePreviewHeaderCell.java b/qadevOOo/tests/java/mod/_sc/ScAccessiblePreviewHeaderCell.java index aefd4365b5bd..69d6a26513eb 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessiblePreviewHeaderCell.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessiblePreviewHeaderCell.java @@ -212,7 +212,7 @@ public class ScAccessiblePreviewHeaderCell extends TestCase { } if (i == 20) { // give up after 10 sec throw new RuntimeException( - "Couldn't get AccessibleRolte.TABLE/TABLE_CELL object"); + "Couldn't get AccessibleRole.TABLE/TABLE_CELL object"); } log.println("No TABLE/TABLE_CELL found yet, retrying"); } diff --git a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java index 3b6d0865696d..0f23744a759c 100644 --- a/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScCellRangeObj.java @@ -169,7 +169,7 @@ public class ScCellRangeObj extends TestCase { XPropertySet.class, oObj); tEnv.addObjRelation("PropSet", PropSet); - // XSearchable: Add a cell to make a seacrchable entry + // XSearchable: Add a cell to make a searchable entry try { tEnv.addObjRelation("XSearchable.MAKEENTRYINCELL", new XCell[] { testRange.getCellByPosition(0,0), testRange.getCellByPosition(0,1)}); diff --git a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java index bb4ee77bd8ae..7cf49d47e207 100644 --- a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldObj.java @@ -97,7 +97,7 @@ public class ScHeaderFieldObj extends TestCase { * instance of the service com.sun.star.text.TextField.Time and * the instance of the service com.sun.star.text.TextField.Date * Obtains the text (the interface XText) which is printed in - * the left part of the header or footer and inserts in it's content + * the left part of the header or footer and inserts in its content * the second created instance. * Object relations created : *
          diff --git a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldsObj.java b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldsObj.java index 76de3ecdf671..945b607cde79 100644 --- a/qadevOOo/tests/java/mod/_sc/ScHeaderFieldsObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScHeaderFieldsObj.java @@ -92,7 +92,7 @@ public class ScHeaderFieldsObj extends TestCase { * using the property 'RightPageHeaderContent'. Creates the * instance of the service com.sun.star.text.TextField.Time . * Obtains the text (the interface XText) which is printed in - * the left part of the header or footer and inserts in it's content + * the left part of the header or footer and inserts in its content * the created field instance. Then the tested component is obtained * through XTextFieldsSupplier interface of a text. * diff --git a/qadevOOo/tests/java/mod/_sc/ScModelObj.java b/qadevOOo/tests/java/mod/_sc/ScModelObj.java index 7a17e824fe7d..0b4589ddeec9 100644 --- a/qadevOOo/tests/java/mod/_sc/ScModelObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScModelObj.java @@ -95,7 +95,7 @@ public class ScModelObj extends TestCase { /** * Creating a TestEnvironment for the interfaces to be tested. * Disposes the spreadsheet documents if they was created already. - * Creates two spreadsheet documents. Rertieves the current controller for + * Creates two spreadsheet documents. Retrieves the current controller for * each of them. Obtains the collection of spreadsheets, takes one of them * and takes some cell from the spreadsheet. The created documents are the instances * of the service com.sun.star.sheet.SpreadsheetDocument. diff --git a/qadevOOo/tests/java/mod/_sw/SwXFootnotes.java b/qadevOOo/tests/java/mod/_sw/SwXFootnotes.java index 5c11113d690c..d62e2097125f 100644 --- a/qadevOOo/tests/java/mod/_sw/SwXFootnotes.java +++ b/qadevOOo/tests/java/mod/_sw/SwXFootnotes.java @@ -101,7 +101,7 @@ public class SwXFootnotes extends TestCase { oInterface = UnoRuntime.queryInterface(XFootnotesSupplier.class, xTextDoc); oObj = oInterface.getFootnotes(); - log.println( "creating a new environment for Foontnotes object" ); + log.println( "creating a new environment for Footnotes object" ); TestEnvironment tEnv = new TestEnvironment(oObj); return tEnv; } -- cgit