diff --git a/.github/linters/codespell.txt b/.github/linters/codespell.txt
index 2942aba1c6a..219490f7371 100644
--- a/.github/linters/codespell.txt
+++ b/.github/linters/codespell.txt
@@ -490,10 +490,6 @@ complettly
complext
compliancy
complient
-compnent
-compoent
-compoents
-compoment
componbents
componentes
componet
@@ -507,14 +503,8 @@ compromize
comptability
comunication
conain
-conained
-conaining
-conains
-conatainer
conatains
-conatined
conatiner
-conatining
concatenaded
concatination
concatinations
@@ -596,9 +586,7 @@ corrdinate
correcxt
correspont
couldn
-could'nt
could't
-couln't
coult
cound
countr
@@ -2065,19 +2053,13 @@ programing
programm
progrss
proirity
-prolems
promiss
propage
-propbably
properies
propert
-propertery
-propertes
propertie
propertyst
propery
-propeties
-propety
proplem
proportianal
proproties
@@ -2099,7 +2081,6 @@ providfers
providse
provies
provode
-prpeparations
prset
prufe
ptd
diff --git a/main/basic/source/uno/dlgcont.cxx b/main/basic/source/uno/dlgcont.cxx
index ae679652041..3e29ffa8ce4 100644
--- a/main/basic/source/uno/dlgcont.cxx
+++ b/main/basic/source/uno/dlgcont.cxx
@@ -263,7 +263,7 @@ Any SAL_CALL SfxDialogLibraryContainer::importLibraryElement
//Reference< XMultiServiceFactory > xMSF( comphelper::getProcessServiceFactory() );
//if( !xMSF.is() )
//{
- // OSL_ENSURE( 0, "### couln't get ProcessServiceFactory\n" );
+ // OSL_ENSURE( 0, "### couldn't get ProcessServiceFactory\n" );
// return aRetAny;
//}
@@ -271,7 +271,7 @@ Any SAL_CALL SfxDialogLibraryContainer::importLibraryElement
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser") ) ), UNO_QUERY );
if( !xParser.is() )
{
- OSL_ENSURE( 0, "### couln't create sax parser component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax parser component\n" );
return aRetAny;
}
@@ -279,7 +279,7 @@ Any SAL_CALL SfxDialogLibraryContainer::importLibraryElement
( OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDialogModel" ) ) ), UNO_QUERY );
if( !xDialogModel.is() )
{
- OSL_ENSURE( 0, "### couln't create com.sun.star.awt.UnoControlDialogModel component\n" );
+ OSL_ENSURE( 0, "### couldn't create com.sun.star.awt.UnoControlDialogModel component\n" );
return aRetAny;
}
diff --git a/main/basic/source/uno/namecont.cxx b/main/basic/source/uno/namecont.cxx
index de2de72c858..acece163bdd 100644
--- a/main/basic/source/uno/namecont.cxx
+++ b/main/basic/source/uno/namecont.cxx
@@ -373,21 +373,21 @@ SfxLibraryContainer::SfxLibraryContainer( void )
mxMSF = comphelper::getProcessServiceFactory();
if( !mxMSF.is() )
{
- OSL_ENSURE( 0, "### couln't get ProcessServiceFactory\n" );
+ OSL_ENSURE( 0, "### couldn't get ProcessServiceFactory\n" );
}
mxSFI = Reference< XSimpleFileAccess >( mxMSF->createInstance
( OUString::createFromAscii( "com.sun.star.ucb.SimpleFileAccess" ) ), UNO_QUERY );
if( !mxSFI.is() )
{
- OSL_ENSURE( 0, "### couln't create SimpleFileAccess component\n" );
+ OSL_ENSURE( 0, "### couldn't create SimpleFileAccess component\n" );
}
mxStringSubstitution = Reference< XStringSubstitution >( mxMSF->createInstance
( OUString::createFromAscii( "com.sun.star.util.PathSubstitution" ) ), UNO_QUERY );
if( !mxStringSubstitution.is() )
{
- OSL_ENSURE( 0, "### couln't create PathSubstitution component\n" );
+ OSL_ENSURE( 0, "### couldn't create PathSubstitution component\n" );
}
}
@@ -662,7 +662,7 @@ sal_Bool SfxLibraryContainer::init_Impl(
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser") ) ), UNO_QUERY );
if( !xParser.is() )
{
- OSL_ENSURE( 0, "### couln't create sax parser component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax parser component\n" );
return sal_False;
}
@@ -912,7 +912,7 @@ sal_Bool SfxLibraryContainer::init_Impl(
#if OSL_DEBUG_LEVEL > 0
Any aError( ::cppu::getCaughtException() );
::rtl::OStringBuffer aMessage;
- aMessage.append( "couln't open sub storage for library '" );
+ aMessage.append( "couldn't open sub storage for library '" );
aMessage.append( ::rtl::OUStringToOString( rLib.aName, osl_getThreadTextEncoding() ) );
aMessage.append( "'.\n\nException:" );
aMessage.append( ::rtl::OUStringToOString( ::comphelper::anyToString( aError ), osl_getThreadTextEncoding() ) );
@@ -1556,7 +1556,7 @@ void SfxLibraryContainer::implStoreLibraryIndexFile( SfxLibrary* pLib,
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Writer") ) ), UNO_QUERY );
if( !xHandler.is() )
{
- OSL_ENSURE( 0, "### couln't create sax-writer component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax-writer component\n" );
return;
}
@@ -1643,7 +1643,7 @@ void SfxLibraryContainer::implStoreLibraryIndexFile( SfxLibrary* pLib,
}
if( !xOut.is() )
{
- OSL_ENSURE( 0, "### couln't open output stream\n" );
+ OSL_ENSURE( 0, "### couldn't open output stream\n" );
return;
}
@@ -1661,7 +1661,7 @@ sal_Bool SfxLibraryContainer::implLoadLibraryIndexFile( SfxLibrary* pLib,
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser") ) ), UNO_QUERY );
if( !xParser.is() )
{
- OSL_ENSURE( 0, "### couln't create sax parser component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax parser component\n" );
return sal_False;
}
@@ -1719,7 +1719,7 @@ sal_Bool SfxLibraryContainer::implLoadLibraryIndexFile( SfxLibrary* pLib,
}
if( !xInput.is() )
{
- // OSL_ENSURE( 0, "### couln't open input stream\n" );
+ // OSL_ENSURE( 0, "### couldn't open input stream\n" );
return sal_False;
}
@@ -1930,7 +1930,7 @@ void SfxLibraryContainer::storeLibraries_Impl( const uno::Reference< embed::XSto
#if OSL_DEBUG_LEVEL > 0
Any aError( ::cppu::getCaughtException() );
::rtl::OStringBuffer aMessage;
- aMessage.append( "couln't create sub storage for library '" );
+ aMessage.append( "couldn't create sub storage for library '" );
aMessage.append( ::rtl::OUStringToOString( rLib.aName, osl_getThreadTextEncoding() ) );
aMessage.append( "'.\n\nException:" );
aMessage.append( ::rtl::OUStringToOString( ::comphelper::anyToString( aError ), osl_getThreadTextEncoding() ) );
@@ -2039,7 +2039,7 @@ void SfxLibraryContainer::storeLibraries_Impl( const uno::Reference< embed::XSto
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Writer") ) ), UNO_QUERY );
if( !xHandler.is() )
{
- OSL_ENSURE( 0, "### couln't create sax-writer component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax-writer component\n" );
return;
}
@@ -2099,7 +2099,7 @@ void SfxLibraryContainer::storeLibraries_Impl( const uno::Reference< embed::XSto
}
if( !xOut.is() )
{
- OSL_ENSURE( 0, "### couln't open output stream\n" );
+ OSL_ENSURE( 0, "### couldn't open output stream\n" );
return;
}
@@ -2353,7 +2353,7 @@ void SAL_CALL SfxLibraryContainer::loadLibrary( const OUString& Name )
#if OSL_DEBUG_LEVEL > 0
Any aError( ::cppu::getCaughtException() );
::rtl::OStringBuffer aMessage;
- aMessage.append( "couln't open sub storage for library '" );
+ aMessage.append( "couldn't open sub storage for library '" );
aMessage.append( ::rtl::OUStringToOString( Name, osl_getThreadTextEncoding() ) );
aMessage.append( "'.\n\nException:" );
aMessage.append( ::rtl::OUStringToOString( ::comphelper::anyToString( aError ), osl_getThreadTextEncoding() ) );
@@ -2404,7 +2404,7 @@ void SAL_CALL SfxLibraryContainer::loadLibrary( const OUString& Name )
{
#if OSL_DEBUG_LEVEL > 0
::rtl::OStringBuffer aMessage;
- aMessage.append( "couln't open library element stream - attempted to open library '" );
+ aMessage.append( "couldn't open library element stream - attempted to open library '" );
aMessage.append( ::rtl::OUStringToOString( Name, osl_getThreadTextEncoding() ) );
aMessage.append( "'." );
OSL_ENSURE( false, aMessage.makeStringAndClear().getStr() );
diff --git a/main/basic/source/uno/scriptcont.cxx b/main/basic/source/uno/scriptcont.cxx
index c7c288dd43d..181312d74bc 100644
--- a/main/basic/source/uno/scriptcont.cxx
+++ b/main/basic/source/uno/scriptcont.cxx
@@ -193,7 +193,7 @@ void SAL_CALL SfxScriptLibraryContainer::writeLibraryElement
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Writer") ) ), UNO_QUERY );
if( !xHandler.is() )
{
- OSL_ENSURE( 0, "### couln't create sax-writer component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax-writer component\n" );
return;
}
@@ -250,7 +250,7 @@ Any SAL_CALL SfxScriptLibraryContainer::importLibraryElement
OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.sax.Parser") ) ), UNO_QUERY );
if( !xParser.is() )
{
- OSL_ENSURE( 0, "### couln't create sax parser component\n" );
+ OSL_ENSURE( 0, "### couldn't create sax parser component\n" );
return aRetAny;
}
diff --git a/main/cppuhelper/inc/cppuhelper/interfacecontainer.h b/main/cppuhelper/inc/cppuhelper/interfacecontainer.h
index a8cfc15d30b..55cc1e4c1d9 100644
--- a/main/cppuhelper/inc/cppuhelper/interfacecontainer.h
+++ b/main/cppuhelper/inc/cppuhelper/interfacecontainer.h
@@ -67,7 +67,7 @@ class CPPUHELPER_DLLPUBLIC OInterfaceIteratorHelper
public:
/**
Create an iterator over the elements of the container. The iterator
- copies the elements of the conatainer. A change to the container
+ copies the elements of the container. A change to the container
during the lifetime of an iterator is allowed and does not
affect the iterator-instance. The iterator and the container take cares
themself for concurrent access, no additional guarding is necessary.
diff --git a/main/cppuhelper/inc/cppuhelper/servicefactory.hxx b/main/cppuhelper/inc/cppuhelper/servicefactory.hxx
index 760ffe8a4a6..2498c6208d7 100644
--- a/main/cppuhelper/inc/cppuhelper/servicefactory.hxx
+++ b/main/cppuhelper/inc/cppuhelper/servicefactory.hxx
@@ -53,7 +53,7 @@ namespace cppu
will not be created if not exist.
@param rBootstrapPath
specifies a path where the bootstrap components could be find. If this
- parameter is an empty string the compoents will be searched in the system
+ parameter is an empty string the components will be searched in the system
path.
@deprecated
*/
@@ -80,7 +80,7 @@ createRegistryServiceFactory(
will not be created if not exist.
@param rBootstrapPath
specifies a path where the bootstrap components could be find. If this
- parameter is an empty string the compoents will be searched in the system
+ parameter is an empty string the components will be searched in the system
path.
@deprecated
*/
@@ -101,7 +101,7 @@ createRegistryServiceFactory(
@param rBootstrapPath
specifies a path where the bootstrap components could be find. If this
- parameter is an empty string the compoents will be searched in the system
+ parameter is an empty string the components will be searched in the system
path.
@deprecated
*/
diff --git a/main/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/main/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index 9a2d93e0b93..78bde5aff26 100644
--- a/main/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/main/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -938,7 +938,7 @@ Reference< XNameAccess > SAL_CALL OSingleSelectQueryComposer::getColumns( ) thr
}
else if ( aRealFind == aSelectColumns->get().end() )
{
- // we can now only look if we found it under the realname propertery
+ // we can now only look if we found it under the realname property
// here we have to make the assumption that the position is correct
OSQLColumns::Vector::iterator aFind2 = aSelectColumns->get().begin() + i-1;
Reference
- add-ongenerates a language specific code skeleton for an add-on compnent using the implementation name as the file and class name. The protocol name(s) and the corresponding command(s) have to be specified with the '-p' option.
+ generates a language specific code skeleton for an add-on component using the implementation name as the file and class name. The protocol name(s) and the corresponding command(s) have to be specified with the '-p' option.
getPropertyOrderIndex() with an invalid propety name.
+ * Call the method getPropertyOrderIndex() with an invalid property name.
* Has OK status if the returned index is "0".
*/
public void _getPropertyOrderIndex() {
diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/style/_CharacterProperties.java b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/style/_CharacterProperties.java
index b14fd849dc8..0186407d3e1 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/style/_CharacterProperties.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/style/_CharacterProperties.java
@@ -340,7 +340,7 @@ public void _CharRotation() {
* changed and set.
* @param get PropertySet where property value is checked after
* setting.
- * @param name Propety name to test.
+ * @param name Property name to test.
* @param newVal Value used to set as new property value if
* the value get is null.
*/
diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/ScHeaderFieldsObj.java b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/ScHeaderFieldsObj.java
index 9c0ca049f24..ef86c2fb4cd 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/ScHeaderFieldsObj.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/ScHeaderFieldsObj.java
@@ -50,7 +50,7 @@
/**
* Test for object which is represented by collection of
- * text fields conained in the text of a page header. + * text fields contained in the text of a page header.
* * Object implements the following interfaces : *
*
* Object implements the following interfaces :
diff --git a/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba b/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
index 3c892be61bf..992b50a655a 100644
--- a/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
+++ b/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
@@ -76,7 +76,7 @@ On Error Goto ErrHndl
Dim aStates As Variant
if NOT hasUnoInterfaces(oObj, "com.sun.star.beans.XPropertySet") then
- Out.Log("The compoent doesn't support XPropertySet this test must be reviewed !!!")
+ Out.Log("The component doesn't support XPropertySet this test must be reviewed !!!")
exit sub
end if
diff --git a/main/registry/inc/registry/registry.h b/main/registry/inc/registry/registry.h
index ebdaf287663..103e771e397 100644
--- a/main/registry/inc/registry/registry.h
+++ b/main/registry/inc/registry/registry.h
@@ -341,7 +341,7 @@ REGISTRY_DLLPUBLIC RegError REGISTRY_CALLTYPE reg_getResolvedKeyName(RegKeyHandl
@param keyName points to a null terminated string specifying the name of the key which stores the
registry information. If keyName is NULL the registry information will be saved under
the key specified by hKey.
- @param regFileName points to a null terminated string specifying the file which conains the
+ @param regFileName points to a null terminated string specifying the file which contains the
registry information.
@return REG_NO_ERROR if succeeds else an error code.
*/
diff --git a/main/sax/test/saxdemo.cxx b/main/sax/test/saxdemo.cxx
index 33543d8d7f0..58373ebbc15 100644
--- a/main/sax/test/saxdemo.cxx
+++ b/main/sax/test/saxdemo.cxx
@@ -570,7 +570,7 @@ int main (int argc, char **argv)
}
else
{
- printf( "couln't create sax-parser component\n" );
+ printf( "couldn't create sax-parser component\n" );
}
@@ -642,6 +642,6 @@ int main (int argc, char **argv)
}
else
{
- printf( "couln't create sax-writer component\n" );
+ printf( "couldn't create sax-writer component\n" );
}
}
diff --git a/main/sc/source/ui/vba/testvba/testvba.cxx b/main/sc/source/ui/vba/testvba/testvba.cxx
index 2f5852e19f9..e6fefdd04c5 100644
--- a/main/sc/source/ui/vba/testvba/testvba.cxx
+++ b/main/sc/source/ui/vba/testvba/testvba.cxx
@@ -79,7 +79,7 @@ OUString convertToURL( const OUString& rPath )
{
osl::FileBase::getFileURLFromSystemPath( rPath, aURL );
if ( aURL.equals( rPath ) )
- throw uno::RuntimeException( rtl::OUString::createFromAscii( "could'nt convert " ).concat( rPath ).concat( rtl::OUString::createFromAscii( " to a URL, is it a fully qualified path name? " ) ), Reference< uno::XInterface >() );
+ throw uno::RuntimeException( rtl::OUString::createFromAscii( "couldn't convert " ).concat( rPath ).concat( rtl::OUString::createFromAscii( " to a URL, is it a fully qualified path name? " ) ), Reference< uno::XInterface >() );
}
return aURL;
}
diff --git a/main/sc/source/ui/vba/vbavalidation.cxx b/main/sc/source/ui/vba/vbavalidation.cxx
index 3575bb9fb72..18f10988d86 100644
--- a/main/sc/source/ui/vba/vbavalidation.cxx
+++ b/main/sc/source/ui/vba/vbavalidation.cxx
@@ -271,7 +271,7 @@ ScVbaValidation::Add( const uno::Any& Type, const uno::Any& AlertStyle, const un
{
case excel::XlDVAlertStyle::xlValidAlertStop:
// yes I know it's already defaulted but safer to assume
- // someone propbably could change the code above
+ // someone probably could change the code above
eStyle = sheet::ValidationAlertStyle_STOP;
break;
case excel::XlDVAlertStyle::xlValidAlertWarning:
diff --git a/main/stoc/source/bootstrap/bootstrap.xml b/main/stoc/source/bootstrap/bootstrap.xml
index 1d983c80817..7107c41f567 100644
--- a/main/stoc/source/bootstrap/bootstrap.xml
+++ b/main/stoc/source/bootstrap/bootstrap.xml
@@ -28,7 +28,7 @@
If no default exists, is not known, or is void, then the return type at the corresponding position in the @@ -116,7 +116,7 @@ published interface XMultiPropertyStates: com::sun::star::uno::XInterface This sequence must be alphabetically sorted. @throws UnknownPropertyException - if one of the propertes does not exist. + if one of the properties does not exist. @throws com::sun::star::lang::WrappedTargetException if the implementation has an internal reason for the exception. diff --git a/main/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/main/unodevtools/source/skeletonmaker/skeletonmaker.cxx index 8b7fdd04a5a..c39aed74798 100644 --- a/main/unodevtools/source/skeletonmaker/skeletonmaker.cxx +++ b/main/unodevtools/source/skeletonmaker/skeletonmaker.cxx @@ -50,7 +50,7 @@ static const char usageText[] = " using the implementation name as the file and class name. A \n" " service type is necessary, referencing an interface which defines\n" " the new add-in functions.\n" -" add-on generates a language specific code skeleton for an add-on compnent\n" +" add-on generates a language specific code skeleton for an add-on component\n" " using the implementation name as the file and class name. The protocol\n" " name(s) and the corresponding command(s) have to be specified with the\n" " '-p' option.\n" diff --git a/main/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx b/main/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx index 998c43c9633..8b599310d81 100644 --- a/main/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx +++ b/main/vbahelper/inc/vbahelper/vbaeventshelperbase.hxx @@ -117,7 +117,7 @@ protected: }; typedef ::std::deque< EventQueueEntry > EventQueue; - /** Derived classes do additional prpeparations and return whether the + /** Derived classes do additional preparations and return whether the event handler has to be called. */ virtual bool implPrepareEvent( EventQueue& rEventQueue, diff --git a/main/vcl/unx/generic/dtrans/X11_selection.hxx b/main/vcl/unx/generic/dtrans/X11_selection.hxx index a28de29ec3d..8db14cd8e64 100644 --- a/main/vcl/unx/generic/dtrans/X11_selection.hxx +++ b/main/vcl/unx/generic/dtrans/X11_selection.hxx @@ -270,7 +270,7 @@ namespace x11 { // contains the XdndEnterEvent of a drop action running // with one of our targets. The data.l[0] member - // (conatining the drag source XLIB_Window) is set + // (containing the drag source XLIB_Window) is set // to None while that is not the case XClientMessageEvent m_aDropEnterEvent; // set to false on XdndEnter diff --git a/main/writerfilter/source/dmapper/DomainMapper.cxx b/main/writerfilter/source/dmapper/DomainMapper.cxx index db29d91ab19..06718056478 100644 --- a/main/writerfilter/source/dmapper/DomainMapper.cxx +++ b/main/writerfilter/source/dmapper/DomainMapper.cxx @@ -3696,7 +3696,7 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, PropertyMapPtr rContext, SprmType case NS_sprm::LN_TTableHeader: case NS_sprm::LN_TTableBorders: // sprmTTableBorders { - OSL_ENSURE( false, "table propeties should be handled by the table manager"); + OSL_ENSURE( false, "table properties should be handled by the table manager"); } break; case NS_sprm::LN_TDefTable10: