diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 15:28:34 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 12:57:18 +0000 |
commit | f7eb8ae9d9cce3e493105da98cc4ace9c56a3062 (patch) | |
tree | 8ed42a0937013d927bbbb75afa62caa9866c15a6 /toolkit | |
parent | 3c7652203cc381e5c8c06d42130ca3bae5576fd2 (diff) |
Fix typos
Change-Id: Ieea40e1b7282267157810f9f58ca083e68ae6715
Reviewed-on: https://gerrit.libreoffice.org/35659
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/README | 2 | ||||
-rw-r--r-- | toolkit/qa/complex/toolkit/Assert.java | 2 | ||||
-rw-r--r-- | toolkit/qa/complex/toolkit/GridControl.java | 2 | ||||
-rw-r--r-- | toolkit/source/awt/animatedimagespeer.cxx | 2 | ||||
-rw-r--r-- | toolkit/test/accessibility/NodeMap.java | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/toolkit/README b/toolkit/README index e320108de058..ea40b4d26590 100644 --- a/toolkit/README +++ b/toolkit/README @@ -4,7 +4,7 @@ or Java. Note that the "awt" here has no relation to the Java awt, as far as I know. It might be inspired by it API-wise, perhaps. (If you know differently, feel free -to improve this REDAME file.) +to improve this README file.) Note that toolkit/ is itself not really a toolkit, it is at root a reasonably simple wrapper of vcl/ - if you came here looking for a diff --git a/toolkit/qa/complex/toolkit/Assert.java b/toolkit/qa/complex/toolkit/Assert.java index eb6ec44dce1e..f7988270a8e3 100644 --- a/toolkit/qa/complex/toolkit/Assert.java +++ b/toolkit/qa/complex/toolkit/Assert.java @@ -87,7 +87,7 @@ public class Assert * retrieves a method, given by name and parameter signature, from the given class * * The method does somewhat more than simply calling {@link Class#getMethod}. In particular, it recognizes - * primitiive parameter types, and attempts to find a method taking the given primitive type, instead of the + * primitive parameter types, and attempts to find a method taking the given primitive type, instead of the * type represented by the parameter class. * * For instance, if you have a method <code>foo( int )</code>, {@link Class#getMethod} would not return this diff --git a/toolkit/qa/complex/toolkit/GridControl.java b/toolkit/qa/complex/toolkit/GridControl.java index ab836cc4a057..e76fe9fab55a 100644 --- a/toolkit/qa/complex/toolkit/GridControl.java +++ b/toolkit/qa/complex/toolkit/GridControl.java @@ -232,7 +232,7 @@ public class GridControl impl_assertColumnModelConsistency(); List< ContainerEvent > events = listener.assertExclusiveInsertionEvents(); listener.reset(); - assertEquals( "wrong number of events fired by setDefaulColumns", defaultColumnsCount, events.size() ); + assertEquals( "wrong number of events fired by setDefaultColumns", defaultColumnsCount, events.size() ); for ( int i=0; i<defaultColumnsCount; ++i ) { final ContainerEvent event = events.get(i); diff --git a/toolkit/source/awt/animatedimagespeer.cxx b/toolkit/source/awt/animatedimagespeer.cxx index 8ddbda4108ad..e33b9ac1ada0 100644 --- a/toolkit/source/awt/animatedimagespeer.cxx +++ b/toolkit/source/awt/animatedimagespeer.cxx @@ -114,7 +114,7 @@ namespace toolkit // the private: scheme is not considered to be hierarchical by INetURLObject, so manually insert the // segment const sal_Int32 separatorPos = i_imageURL.indexOf( '/' ); - ENSURE_OR_RETURN( separatorPos != -1, "lcl_getHighContrastURL: unsipported URL scheme - cannot automatically determine HC version!", i_imageURL ); + ENSURE_OR_RETURN( separatorPos != -1, "lcl_getHighContrastURL: unsupported URL scheme - cannot automatically determine HC version!", i_imageURL ); OUStringBuffer composer; composer.append( i_imageURL.copy( 0, separatorPos ) ); diff --git a/toolkit/test/accessibility/NodeMap.java b/toolkit/test/accessibility/NodeMap.java index b8e8b3bf3300..045c933713d5 100644 --- a/toolkit/test/accessibility/NodeMap.java +++ b/toolkit/test/accessibility/NodeMap.java @@ -44,7 +44,7 @@ class NodeMap /** @return whether the new node was different from a previous one - repspectively was the first one set. + respectively was the first one set. */ public boolean InsertNode (XAccessibleContext xContext, AccessibleTreeNode aNode) { |