You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2021/03/25 22:09:46 UTC

[openoffice] branch trunk updated: Fixed typo (arbitray -> arbitrary)

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new f9f5b56  Fixed typo (arbitray -> arbitrary)
f9f5b56 is described below

commit f9f5b5667a1c19794e99a0d701b2253e3c70ba25
Author: mseidel <ms...@apache.org>
AuthorDate: Thu Mar 25 23:09:19 2021 +0100

    Fixed typo (arbitray -> arbitrary)
---
 main/offapi/com/sun/star/rendering/ColorComponentTag.idl                | 2 +-
 .../OOoRunner/src/main/java/convwatch/GraphicalDifferenceCheck.java     | 2 +-
 main/sal/inc/rtl/uuid.h                                                 | 2 +-
 main/sc/source/core/tool/interpr5.cxx                                   | 2 +-
 main/svtools/source/table/gridtablerenderer.cxx                         | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/main/offapi/com/sun/star/rendering/ColorComponentTag.idl b/main/offapi/com/sun/star/rendering/ColorComponentTag.idl
index 1d8fcc5..0a41571 100644
--- a/main/offapi/com/sun/star/rendering/ColorComponentTag.idl
+++ b/main/offapi/com/sun/star/rendering/ColorComponentTag.idl
@@ -65,7 +65,7 @@ constants ColorComponentTag
     /// Green colorant from hexachrome color space
     const byte CMYKOG_GREEN=9;
 
-    /// Arbitray extra spot color, e.g. pantone
+    /// Arbitrary extra spot color, e.g. pantone
     const byte SPOT=10;
 
     /// Index into palette
diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/GraphicalDifferenceCheck.java b/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/GraphicalDifferenceCheck.java
index 31ab94f..23154f7 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/GraphicalDifferenceCheck.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/convwatch/GraphicalDifferenceCheck.java
@@ -298,7 +298,7 @@ public class GraphicalDifferenceCheck
 // LLA: old!         if(inputDocumentPath.indexOf(File.separator) != -1)
 // LLA: old!             inputDocumentPath = inputDocumentPath.substring(inputDocumentPath.lastIndexOf(File.separator) + 1, inputDocumentPath.length());
 // LLA: old! 
-// LLA: old! 		// exchange any arbitray suffix against the refence suffix (.prn)
+// LLA: old! 		// exchange any arbitrary suffix against the reference suffix (.prn)
 // LLA: old!         if(inputDocumentPath.indexOf('.') != -1)
 // LLA: old!             inputDocumentPath = inputDocumentPath.substring(0, inputDocumentPath.lastIndexOf('.'));
 // LLA: old!         inputDocumentPath = inputDocumentPath + ".prn";
diff --git a/main/sal/inc/rtl/uuid.h b/main/sal/inc/rtl/uuid.h
index 9cdb84f..ef30f64 100644
--- a/main/sal/inc/rtl/uuid.h
+++ b/main/sal/inc/rtl/uuid.h
@@ -112,7 +112,7 @@ sal_Int32 SAL_CALL rtl_compareUuid( const sal_uInt8 *pUUID1 , const sal_uInt8 *p
 	@param pTargetUUID pointer to at least 16 bytes of memory. After the call
 	                   it contains the newly generated uuid in network byte order.
 	@param pNameSpaceUUID The namespace uuid. Below are some predefined ones,
-	                      but any arbitray uuid can be used as namespace.
+	                      but any arbitrary uuid can be used as namespace.
 
 	@param pName the name
  */
diff --git a/main/sc/source/core/tool/interpr5.cxx b/main/sc/source/core/tool/interpr5.cxx
index 6a591fe..87a0d57 100644
--- a/main/sc/source/core/tool/interpr5.cxx
+++ b/main/sc/source/core/tool/interpr5.cxx
@@ -311,7 +311,7 @@ ScMatrixRef ScInterpreter::GetNewMat(SCSIZE nC, SCSIZE nR)
     SCSIZE nCols, nRows;
     pMat->GetDimensions( nCols, nRows);
     if ( nCols != nC || nRows != nR )
-    {   // arbitray limit of elements exceeded
+    {   // arbitrary limit of elements exceeded
         SetError( errStackOverflow);
         pMat->Delete();
         pMat = NULL;
diff --git a/main/svtools/source/table/gridtablerenderer.cxx b/main/svtools/source/table/gridtablerenderer.cxx
index 47e03aa..6f686ed 100644
--- a/main/svtools/source/table/gridtablerenderer.cxx
+++ b/main/svtools/source/table/gridtablerenderer.cxx
@@ -418,7 +418,7 @@ namespace svt { namespace table
             sal_uLong nDrawTextFlags = lcl_getAlignmentTextDrawFlags( *m_pImpl, 0 ) | TEXT_DRAW_CLIP;
             if ( !m_pImpl->rModel.isEnabled() )
                 nDrawTextFlags |= TEXT_DRAW_DISABLE;
-                // TODO: is using the horizontal alignment of the 0'th column a good idea here? This is pretty ... arbitray ..
+                // TODO: is using the horizontal alignment of the 0'th column a good idea here? This is pretty ... arbitrary ..
             _rDevice.DrawText( aTextRect, rowTitle, nDrawTextFlags );
         }