This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new af228fbf5e Fix typos (#416)
af228fbf5e is described below
commit af228fbf5e3dca9dffe75c43177b52ac1ed7ad92
Author: John Bampton <[email protected]>
AuthorDate: Sun Sep 7 01:39:43 2025 +1000
Fix typos (#416)
* Fix typos
* Recreate ignored words list `codespell.txt`
(cherry picked from commit efd61a206bbee858699f5a9f10508cd13f81bbbf)
---
main/chart2/source/tools/ChartTypeHelper.cxx | 2 +-
main/cli_ure/source/climaker/climaker_share.h | 2 +-
main/cppuhelper/test/testpropshlp.cxx | 30 +++++++++++-----------
.../org/openoffice/setup/Util/ModuleCtrl.java | 4 +--
.../star/tooling/converter/LineErrorException.java | 2 +-
main/migrationanalysis/src/wizard/IniSupport.bas | 2 +-
.../java/ifc/beans/_XTolerantMultiPropertySet.java | 2 +-
.../tests/java/ifc/i18n/_XTransliteration.java | 4 +--
.../java/ifc/sheet/_XDataPilotDescriptor.java | 2 +-
.../tests/java/ifc/text/_XDocumentIndex.java | 2 +-
.../java/ifc/ucb/_XContentProviderManager.java | 2 +-
.../tests/java/ifc/util/_XURLTransformer.java | 4 +--
main/qadevOOo/tests/java/mod/_lng/DicList.java | 2 +-
.../complex/dataPilot/_XDataPilotDescriptor.java | 2 +-
main/sc/qa/complex/sc/CalcRTL.java | 2 +-
main/solenv/gbuild/platform/freebsd.mk | 4 +--
main/solenv/gbuild/platform/linux.mk | 4 +--
main/solenv/gbuild/platform/macosx.mk | 4 +--
main/solenv/gbuild/platform/os2.mk | 2 +-
main/solenv/gbuild/platform/solaris.mk | 4 +--
main/solenv/gbuild/platform/windows.mk | 4 +--
main/solenv/gbuild/platform/winmingw.mk | 4 +--
22 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/main/chart2/source/tools/ChartTypeHelper.cxx
b/main/chart2/source/tools/ChartTypeHelper.cxx
index 701fb6ca91..412e3afdc6 100644
--- a/main/chart2/source/tools/ChartTypeHelper.cxx
+++ b/main/chart2/source/tools/ChartTypeHelper.cxx
@@ -525,7 +525,7 @@ drawing::Direction3D
ChartTypeHelper::getDefaultRealisticLightDirection( const u
sal_Int32 ChartTypeHelper::getAxisType( const uno::Reference<
XChartType >& xChartType, sal_Int32 nDimensionIndex )
{
- //retruned is a constant from constant group
::com::sun::star::chart2::AxisType
+ //returned is a constant from constant group
::com::sun::star::chart2::AxisType
//@todo ask charttype itself --> need model change first
if(!xChartType.is())
diff --git a/main/cli_ure/source/climaker/climaker_share.h
b/main/cli_ure/source/climaker/climaker_share.h
index 52be2938a5..3698a542b3 100644
--- a/main/cli_ure/source/climaker/climaker_share.h
+++ b/main/cli_ure/source/climaker/climaker_share.h
@@ -103,7 +103,7 @@ inline ::rtl::OUString String_to_ustring( ::System::String
* str )
}
/* If the argument type is a typedef for an interface then the interface
- type description is returned, otherwise an exeption is thrown.
+ type description is returned, otherwise an exception is thrown.
*/
css::uno::Reference< css::reflection::XInterfaceTypeDescription2 >
resolveInterfaceTypedef(const
css::uno::Reference<css::reflection::XTypeDescription>& type);
diff --git a/main/cppuhelper/test/testpropshlp.cxx
b/main/cppuhelper/test/testpropshlp.cxx
index 2b66d3892a..d705bd41de 100644
--- a/main/cppuhelper/test/testpropshlp.cxx
+++ b/main/cppuhelper/test/testpropshlp.cxx
@@ -235,7 +235,7 @@ void test_PropertyArrayHelper()
try
{
a1.getPropertyByName( OUString(
RTL_CONSTASCII_USTRINGPARAM("never exist") ) );
- OSL_ENSURE( sal_False, "exeption not thrown" );
+ OSL_ENSURE( sal_False, "exception not thrown" );
}
catch( UnknownPropertyException & )
{
@@ -835,7 +835,7 @@ void test_PropertySetHelper()
try
{
xPS->addPropertyChangeListener( OUString(
RTL_CONSTASCII_USTRINGPARAM("Does not exist") ), xPS_L );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -845,7 +845,7 @@ void test_PropertySetHelper()
try
{
xPS->addVetoableChangeListener( OUString(
RTL_CONSTASCII_USTRINGPARAM("Does not exist") ), x2 );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -885,7 +885,7 @@ void test_PropertySetHelper()
Any aBool;
aBool.setValue( &b , getCppuBooleanType() );
xPS->setPropertyValue( OUString(
RTL_CONSTASCII_USTRINGPARAM("BOOL") ), aBool );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( PropertyVetoException & /*e*/ )
{
@@ -899,7 +899,7 @@ void test_PropertySetHelper()
aBool.setValue( &b , getCppuBooleanType() );
// BOOL i s0
pPS->setFastPropertyValue( PROPERTY_BOOL, aBool
);
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( PropertyVetoException & /*e*/ )
{
@@ -912,7 +912,7 @@ void test_PropertySetHelper()
Any aBool;
aBool.setValue( &b , getCppuBooleanType() );
xPS->setPropertyValue( OUString(
RTL_CONSTASCII_USTRINGPARAM("Does not exist") ), aBool );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -924,7 +924,7 @@ void test_PropertySetHelper()
Any aBool;
aBool.setValue( &b , getCppuBooleanType() );
pPS->setFastPropertyValue( 3, aBool );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -935,7 +935,7 @@ void test_PropertySetHelper()
{
Any aBool;
aBool = xPS->getPropertyValue( OUString(
RTL_CONSTASCII_USTRINGPARAM("Does not exist") ) );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -945,7 +945,7 @@ void test_PropertySetHelper()
{
Any aBool;
aBool = ((XFastPropertySet
*)pPS)->getFastPropertyValue( 3 );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( UnknownPropertyException & /*e*/ )
{
@@ -956,7 +956,7 @@ void test_PropertySetHelper()
{
Any aBool;
xPS->setPropertyValue( OUString(
RTL_CONSTASCII_USTRINGPARAM("INT32") ), aBool );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( IllegalArgumentException & /*e*/ )
{
@@ -966,7 +966,7 @@ void test_PropertySetHelper()
{
Any aBool;
pPS->setFastPropertyValue( PROPERTY_INT32,
aBool );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( IllegalArgumentException & /*e*/ )
{
@@ -978,7 +978,7 @@ void test_PropertySetHelper()
Any aINT32;
aINT32 <<= (sal_Int32 ) 16;
xPS->setPropertyValue( OUString(
RTL_CONSTASCII_USTRINGPARAM("INT16") ), aINT32 );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( IllegalArgumentException & /*e*/ )
{
@@ -990,7 +990,7 @@ void test_PropertySetHelper()
Any aINT32;
aINT32 <<= (sal_Int32) 16;
pPS->setFastPropertyValue( PROPERTY_INT16,
aINT32 );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( IllegalArgumentException & /*e*/ )
{
@@ -1083,7 +1083,7 @@ void test_PropertySetHelper()
try
{
((XFastPropertySet
*)pPS)->setFastPropertyValue( PROPERTY_INT16, aValue );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch( PropertyVetoException & /*e*/ )
{
@@ -1163,7 +1163,7 @@ void test_PropertySetHelper()
aValues.getArray()[0] <<= (sal_Int16)44;
aValues.getArray()[1] <<= (sal_Int16)100;
pPS->setPropertyValues( szPN, aValues );
- OSL_ENSURE( sal_False, "PropertySetHelper:
exeption not thrown" );
+ OSL_ENSURE( sal_False, "PropertySetHelper:
exception not thrown" );
}
catch ( PropertyVetoException & /*e*/ )
{
diff --git
a/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java
b/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java
index ebb22b9e27..62db62b14a 100644
---
a/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java
+++
b/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/ModuleCtrl.java
@@ -602,7 +602,7 @@ public class ModuleCtrl {
boolean setToTrue = false;
// At least one language module should not be uninstalled. Then this
function returns true.
- // An exeption is the complete uninstallation or the masked complete
uninstallation.
+ // An exception is the complete uninstallation or the masked complete
uninstallation.
if (( packageData.isApplicationPackage() ) &&
( ! packageData.isHidden() ) &&
@@ -624,7 +624,7 @@ public class ModuleCtrl {
boolean setToTrue = false;
// At least one language module should not be uninstalled. Then this
function returns true.
- // An exeption is the complete uninstallation or the masked complete
uninstallation.
+ // An exception is the complete uninstallation or the masked complete
uninstallation.
if (( packageData.showMultiLingualOnly() ) &&
( ! packageData.isHidden() ) &&
diff --git
a/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java
b/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java
index b4d05abd51..fdb08537c8 100644
---
a/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java
+++
b/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/LineErrorException.java
@@ -28,7 +28,7 @@ package com.sun.star.tooling.converter;
/**
- * This Exeption is thrown if a DataReader finds an error in a read Line
+ * This Exception is thrown if a DataReader finds an error in a read Line
* f. e. wrong column number
*
* @author Christian Schmidt 2005
diff --git a/main/migrationanalysis/src/wizard/IniSupport.bas
b/main/migrationanalysis/src/wizard/IniSupport.bas
index dbcb70fc7a..52a3d381e8 100644
--- a/main/migrationanalysis/src/wizard/IniSupport.bas
+++ b/main/migrationanalysis/src/wizard/IniSupport.bas
@@ -193,7 +193,7 @@ Public Function ProfileLoadList(lst As ComboBox, _
KeyData = ProfileGetItem( _
lpSectionName, lpKeyName, "", inifile)
- 'add the item retruned to the listbox
+ 'add the item returned to the listbox
lst.AddItem KeyData
Loop
diff --git a/main/qadevOOo/tests/java/ifc/beans/_XTolerantMultiPropertySet.java
b/main/qadevOOo/tests/java/ifc/beans/_XTolerantMultiPropertySet.java
index 3f7d8648d4..38b5b68f44 100644
--- a/main/qadevOOo/tests/java/ifc/beans/_XTolerantMultiPropertySet.java
+++ b/main/qadevOOo/tests/java/ifc/beans/_XTolerantMultiPropertySet.java
@@ -176,7 +176,7 @@ public class _XTolerantMultiPropertySet extends
MultiMethodTest {
e.printStackTrace(log);
}
- //read only properties will throw a PropertyVetoExeption if they are
set
+ //read only properties will throw a PropertyVetoException if they are
set
int failures = 0;
for (int k = 0; k < SPTF.length; k++) {
diff --git a/main/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
b/main/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
index b2cf95217d..d0fce079ac 100644
--- a/main/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
+++ b/main/qadevOOo/tests/java/ifc/i18n/_XTransliteration.java
@@ -317,7 +317,7 @@ public class _XTransliteration extends MultiMethodTest {
/**
* Performs tesing of two substrings. Also testing of opposite
* substrings order performed.
- * @return <code>true</code> if substrings are equal and retruned
+ * @return <code>true</code> if substrings are equal and returned
* value is 0 for both orders,
* if substrings are different and expected value
* returned for direct order and opposite value returned for
@@ -399,7 +399,7 @@ public class _XTransliteration extends MultiMethodTest {
* Performs tesing of two strings. If the expected value is not 0
* (i.e. strings are not equal), then also testing of opposite
* strings order performed.
- * @return <code>true</code> if strings are equal and retruned
+ * @return <code>true</code> if strings are equal and returned
* value is 0, if strings are different and expected value
* returned for direct order and opposite value returned for
* opposite order.
diff --git a/main/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
b/main/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
index e6f61ee21b..094e948108 100644
--- a/main/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
+++ b/main/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
@@ -376,7 +376,7 @@ public class _XDataPilotDescriptor extends MultiMethodTest {
String name = null;
if (IA == null) {
- log.println("Null retruned.") ;
+ log.println("Null returned.") ;
return false ;
}
diff --git a/main/qadevOOo/tests/java/ifc/text/_XDocumentIndex.java
b/main/qadevOOo/tests/java/ifc/text/_XDocumentIndex.java
index 5e1cd9bddb..7eecbf8e4f 100644
--- a/main/qadevOOo/tests/java/ifc/text/_XDocumentIndex.java
+++ b/main/qadevOOo/tests/java/ifc/text/_XDocumentIndex.java
@@ -56,7 +56,7 @@ public class _XDocumentIndex extends MultiMethodTest {
/**
* Test calls the method. <p>
- * Has <b> OK </b> status if the retruned service name
+ * Has <b> OK </b> status if the returned service name
* is equal to 'com.sun.star.text.DocumentIndex'.
*/
public void _getServiceName() {
diff --git a/main/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java
b/main/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java
index df8539a685..f09e787a44 100644
--- a/main/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java
+++ b/main/qadevOOo/tests/java/ifc/ucb/_XContentProviderManager.java
@@ -233,7 +233,7 @@ public class _XContentProviderManager extends
MultiMethodTest {
* At first one provider is deregistered, after that provider
* is queried, the second provider must be returned for the
* specified scheme. Then the second provider is deregistered.
- * Now <code>null</code> value must be retruned by the method
+ * Now <code>null</code> value must be returned by the method
* <code>queryContentProvider</code> on the specified scheme. <p>
*
* Has <b>OK</b> status if in the first case the second provider
diff --git a/main/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
b/main/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
index 46f278e3d6..a28f41ea7a 100644
--- a/main/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
+++ b/main/qadevOOo/tests/java/ifc/util/_XURLTransformer.java
@@ -68,7 +68,7 @@ public class _XURLTransformer extends MultiMethodTest {
* passed and assembled. Then incomplete URL (only
* <code>Server</code> field is set) is passed. <p>
* Has <b> OK </b> status if in the first case <code>true</code>
- * retruned and <code>Complete</code> field is set and in the
+ * returned and <code>Complete</code> field is set and in the
* second case <code>false</code> is returned. <p>
*/
public void _assemble(){
@@ -140,7 +140,7 @@ public class _XURLTransformer extends MultiMethodTest {
* to proper URL) is passed and parsed. Then incomplete URL (only
* <code>Server</code> field is set) is passed. <p>
* Has <b> OK </b> status if in the first case <code>true</code>
- * retruned and all URL fields are set to proper values and in the
+ * returned and all URL fields are set to proper values and in the
* second case <code>false</code> is returned. <p>
*/
public void _parseStrict() {
diff --git a/main/qadevOOo/tests/java/mod/_lng/DicList.java
b/main/qadevOOo/tests/java/mod/_lng/DicList.java
index e810ed5b6f..97dbba4c93 100644
--- a/main/qadevOOo/tests/java/mod/_lng/DicList.java
+++ b/main/qadevOOo/tests/java/mod/_lng/DicList.java
@@ -68,7 +68,7 @@ public class DicList extends TestCase {
* <code>com.sun.star.lingu2.DicList</code>. Then two dictionaries
* are created (positive and negative) and added to the list, one
* entry is added to each of dictionaries and they both are activated.
- * The distionary list is retruned as a component for testing.
+ * The dictionary list is returned as a component for testing.
*/
public synchronized TestEnvironment createTestEnvironment( TestParameters
Param, PrintWriter log )
throws StatusException {
diff --git a/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
b/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
index ea3ec3c8b7..354dc87c84 100644
--- a/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
+++ b/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
@@ -411,7 +411,7 @@ public class _XDataPilotDescriptor {
String name = null;
if (IA == null) {
- System.out.println("Null retruned.") ;
+ System.out.println("Null returned.") ;
return false ;
}
diff --git a/main/sc/qa/complex/sc/CalcRTL.java
b/main/sc/qa/complex/sc/CalcRTL.java
index b93f00ea1e..db95b42cc3 100644
--- a/main/sc/qa/complex/sc/CalcRTL.java
+++ b/main/sc/qa/complex/sc/CalcRTL.java
@@ -353,7 +353,7 @@ public class CalcRTL /* extends ComplexTestCase */
* @param oldValue : the value of the property before it has been changed
* @param newValue : the value the property has been set to
* @param resValue : the value getPropertyValue returned for the property
- * @param exception : the exeption thrown during the change of the property
+ * @param exception : the exception thrown during the change of the
property
*/
protected boolean checkResult(XPropertySet set, String propName,
Object oldValue, Object newValue,
diff --git a/main/solenv/gbuild/platform/freebsd.mk
b/main/solenv/gbuild/platform/freebsd.mk
index fcaeecd829..b1259cb42d 100644
--- a/main/solenv/gbuild/platform/freebsd.mk
+++ b/main/solenv/gbuild/platform/freebsd.mk
@@ -177,7 +177,7 @@ gb_COMPILERNOOPTFLAGS := -O0
gb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs)
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
@@ -222,7 +222,7 @@ $(call gb_Helper_abbreviate_dirs,\
$(INCLUDE))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/linux.mk
b/main/solenv/gbuild/platform/linux.mk
index f6326c6d5c..874dbde417 100644
--- a/main/solenv/gbuild/platform/linux.mk
+++ b/main/solenv/gbuild/platform/linux.mk
@@ -165,7 +165,7 @@ gb_COMPILERNOOPTFLAGS := -O0
gb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs)
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
@@ -210,7 +210,7 @@ $(call gb_Helper_abbreviate_dirs,\
$(INCLUDE))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/macosx.mk
b/main/solenv/gbuild/platform/macosx.mk
index cd7f3a80a6..3b5d65805a 100644
--- a/main/solenv/gbuild/platform/macosx.mk
+++ b/main/solenv/gbuild/platform/macosx.mk
@@ -154,14 +154,14 @@ gb_COMPILERNOOPTFLAGS := -O0
gb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs)
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
$(1)
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/os2.mk
b/main/solenv/gbuild/platform/os2.mk
index fe3f89c7b9..246ccf7c6e 100644
--- a/main/solenv/gbuild/platform/os2.mk
+++ b/main/solenv/gbuild/platform/os2.mk
@@ -151,7 +151,7 @@ gb_COMPILERNOOPTFLAGS := -O0
gb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs)
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/solaris.mk
b/main/solenv/gbuild/platform/solaris.mk
index c944b04bc8..5114e99103 100644
--- a/main/solenv/gbuild/platform/solaris.mk
+++ b/main/solenv/gbuild/platform/solaris.mk
@@ -130,14 +130,14 @@ gb_COMPILERNOOPTFLAGS :=
gb_Helper_abbreviate_dirs_native = $(gb_Helper_abbreviate_dirs)
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
$(1)
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/windows.mk
b/main/solenv/gbuild/platform/windows.mk
index abde060648..979fea9448 100644
--- a/main/solenv/gbuild/platform/windows.mk
+++ b/main/solenv/gbuild/platform/windows.mk
@@ -248,7 +248,7 @@ R=$(gb_Helper_REPODIR_NATIVE) && $(subst
$(REPODIR)/,$$R/,$(subst $(gb_Helper_RE
$(subst $(REPODIR)/,$$R/,$(subst $(SRCDIR)/,$$S/,$(subst
$(OUTDIR)/,$$O/,$(subst $(WORKDIR)/,$$W/,$(subst
$(gb_Helper_REPODIR_NATIVE)/,$$R/,$(subst
$(gb_Helper_SRCDIR_NATIVE)/,$$S/,$(subst
$(gb_Helper_OUTDIR_NATIVE)/,$$O/,$(subst
$(gb_Helper_WORKDIR_NATIVE)/,$$W/,$(1)))))))))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
@@ -259,7 +259,7 @@ $(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \
$(1)))))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
diff --git a/main/solenv/gbuild/platform/winmingw.mk
b/main/solenv/gbuild/platform/winmingw.mk
index 64a639cfec..82c4fbc45c 100644
--- a/main/solenv/gbuild/platform/winmingw.mk
+++ b/main/solenv/gbuild/platform/winmingw.mk
@@ -196,7 +196,7 @@ R=$(gb_Helper_REPODIR_NATIVE) && $(subst
$(REPODIR)/,$$R/,$(subst $(gb_Helper_RE
$(subst $(REPODIR)/,$$R/,$(subst $(SRCDIR)/,$$S/,$(subst
$(OUTDIR)/,$$O/,$(subst $(WORKDIR)/,$$W/,$(subst
$(gb_Helper_REPODIR_NATIVE)/,$$R/,$(subst
$(gb_Helper_SRCDIR_NATIVE)/,$$S/,$(subst
$(gb_Helper_OUTDIR_NATIVE)/,$$O/,$(subst
$(gb_Helper_WORKDIR_NATIVE)/,$$W/,$(1)))))))))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native
@@ -207,7 +207,7 @@ $(patsubst $(SRCDIR)%,$(gb_Helper_SRCDIR_NATIVE)%, \
$(1)))))
endef
-# convert parametters filesystem root to native notation
+# convert parameters filesystem root to native notation
# does some real work only on windows, make sure not to
# break the dummy implementations on unx*
define gb_Helper_convert_native