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 2020/03/02 23:42:47 UTC

[openoffice] branch trunk updated: Fixed typo (minmal -> minimal)

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 414ebe3  Fixed typo (minmal -> minimal)
414ebe3 is described below

commit 414ebe3f9f11a92a37e6101e6ed76c1b5b51d650
Author: mseidel <ms...@apache.org>
AuthorDate: Tue Mar 3 00:40:29 2020 +0100

    Fixed typo (minmal -> minimal)
---
 main/comphelper/inc/comphelper/seqstream.hxx      | 2 +-
 main/framework/source/services/urltransformer.cxx | 4 ++--
 main/sw/source/core/doc/htmltbl.cxx               | 4 ++--
 main/sw/source/core/text/txttab.cxx               | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/main/comphelper/inc/comphelper/seqstream.hxx b/main/comphelper/inc/comphelper/seqstream.hxx
index e4f9b3e..a0fcb43 100644
--- a/main/comphelper/inc/comphelper/seqstream.hxx
+++ b/main/comphelper/inc/comphelper/seqstream.hxx
@@ -111,7 +111,7 @@ public:
 		@param		_nResizeFactor		the factor which is used for resizing the sequence when necessary. In every
 										resize step, the new sequence size will be calculated by multiplying the current
 										size with this factor, rounded off to the next multiple of 4.
-		@param		_nMinimumResize		the minmal number of bytes which is additionally allocated on resizing
+		@param		_nMinimumResize		the minimal number of bytes which is additionally allocated on resizing
 		@param		_nMaximumResize		as the growth of the stream size is exponential, you may want to specify a
 										maxmimum amount of memory which the sequence will grow by. If -1 is used,
 										no limit is applied
diff --git a/main/framework/source/services/urltransformer.cxx b/main/framework/source/services/urltransformer.cxx
index d366fa0..45df767 100644
--- a/main/framework/source/services/urltransformer.cxx
+++ b/main/framework/source/services/urltransformer.cxx
@@ -189,7 +189,7 @@ sal_Bool SAL_CALL URLTransformer::parseStrict( URL& aURL ) throw( RuntimeExcepti
 		}
 		else
 		{
-			// Minmal support for unknown protocols. This is mandatory to support the "Protocol Handlers" implemented
+			// Minimal support for unknown protocols. This is mandatory to support the "Protocol Handlers" implemented
 			// in framework!
 			aURL.Protocol	= aProtocol;
 			aURL.Main		= aURL.Complete;
@@ -229,7 +229,7 @@ sal_Bool SAL_CALL URLTransformer::parseSmart(			URL&		aURL			,
 	}
 	else
 	{
-		// Minmal support for unknown protocols. This is mandatory to support the "Protocol Handlers" implemented
+		// Minimal support for unknown protocols. This is mandatory to support the "Protocol Handlers" implemented
 		// in framework!
 		if ( INetURLObject::CompareProtocolScheme( sSmartProtocol ) == INET_PROT_NOT_VALID )
 		{
diff --git a/main/sw/source/core/doc/htmltbl.cxx b/main/sw/source/core/doc/htmltbl.cxx
index e2a160e..15be8ff 100644
--- a/main/sw/source/core/doc/htmltbl.cxx
+++ b/main/sw/source/core/doc/htmltbl.cxx
@@ -945,11 +945,11 @@ void SwHTMLTableLayout::AutoLayoutPass1()
 		if( HasColTags() )
 		{
 			// Zum Anpassen der relativen Breiten werden im 1. Schritt die
-			// Minmalbreiten aller anzupassenden Zellen jeweils mit der
+			// Minimalbreiten aller anzupassenden Zellen jeweils mit der
 			// relativen Breite einer Spalte multipliziert. Dadurch stimmen
 			// dann die Breitenverhaeltnisse der Spalten untereinander.
 			// Ausserdem wird der Faktor berechnet, um den die Zelle dadurch
-			// breiter gworden ist als die Minmalbreite.
+			// breiter gworden ist als die Minimalbreite.
 			// Im 2. Schritt werden dann die berechneten Breiten durch diesen
 			// Faktor geteilt. Dadurch bleibt die Breite (nimd.) einer Zelle
 			// erhalten und dient als Ausgangsbasis fuer die andern Breiten.
diff --git a/main/sw/source/core/text/txttab.cxx b/main/sw/source/core/text/txttab.cxx
index 40d70cd..5c86d35 100644
--- a/main/sw/source/core/text/txttab.cxx
+++ b/main/sw/source/core/text/txttab.cxx
@@ -417,7 +417,7 @@ sal_Bool SwTabPortion::PreFormat( SwTxtFormatInfo &rInf )
     PrtWidth( nMinimumTabWidth );
 
     // Break tab stop to next line if:
-    // 1. Minmal width does not fit to line anymore.
+    // 1. Minimal width does not fit to line anymore.
     // 2. An underflow event was called for the tab portion.
 	sal_Bool bFull = ( bTabCompat && rInf.IsUnderFlow() ) ||
                        rInf.Width() <= rInf.X() + PrtWidth();