Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .github/linters/codespell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -490,10 +490,6 @@ complettly
complext
compliancy
complient
compnent
compoent
compoents
compoment
componbents
componentes
componet
Expand All @@ -507,14 +503,8 @@ compromize
comptability
comunication
conain
conained
conaining
conains
conatainer
conatains
conatined
conatiner
conatining
concatenaded
concatination
concatinations
Expand Down Expand Up @@ -596,9 +586,7 @@ corrdinate
correcxt
correspont
couldn
could'nt
could't
couln't
coult
cound
countr
Expand Down Expand Up @@ -2065,19 +2053,13 @@ programing
programm
progrss
proirity
prolems
promiss
propage
propbably
properies
propert
propertery
propertes
propertie
propertyst
propery
propeties
propety
proplem
proportianal
proproties
Expand All @@ -2099,7 +2081,6 @@ providfers
providse
provies
provode
prpeparations
prset
prufe
ptd
Expand Down
6 changes: 3 additions & 3 deletions main/basic/source/uno/dlgcont.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -263,23 +263,23 @@ 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;
//}

Reference< XParser > xParser( mxMSF->createInstance(
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;
}

Reference< XNameContainer > xDialogModel( mxMSF->createInstance
( 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;
}

Expand Down
28 changes: 14 additions & 14 deletions main/basic/source/uno/namecont.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
}
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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() ) );
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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() ) );
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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() ) );
Expand Down Expand Up @@ -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() );
Expand Down
4 changes: 2 additions & 2 deletions main/basic/source/uno/scriptcont.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion main/cppuhelper/inc/cppuhelper/interfacecontainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions main/cppuhelper/inc/cppuhelper/servicefactory.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand All @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<XPropertySet> xProp(*aFind2,UNO_QUERY);
Expand Down
2 changes: 1 addition & 1 deletion main/filter/source/graphicfilter/icgm/cgm.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class CGM
CGMBitmap* mpBitmapInUse;
CGMChart* mpChart; // if sal_True->"SHWSLIDEREC"
// otherwise "BEGINPIC" commands
// controlls page inserting
// controls page inserting
CGMElements* pElement;
CGMElements* pCopyOfE;
CGMOutAct* mpOutAct;
Expand Down
2 changes: 1 addition & 1 deletion main/filter/source/xslt/export/spreadsheetml/table.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@
<xsl:text>000</xsl:text>
</xsl:when>
<xsl:when test="@office:time-value">
<!-- conatains date and time (time will be evaluated later -->
<!-- contains date and time (time will be evaluated later -->
<xsl:value-of select="@office:date-value" />
<xsl:text>T</xsl:text>
<xsl:choose>
Expand Down
2 changes: 1 addition & 1 deletion main/framework/inc/services/frameloaderfactory.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class FrameLoaderFactory : public ThreadHelpBase , // Struct for right in

/*-****************************************************************************************************//**
@short return state if informations about frame loader available
@descr If these method return false - no information could'nt read from configuration ...
@descr If these method return false - no information couldn't read from configuration ...
I think nothing will work then. Normally we return sal_True!

@seealso class FilterCache!
Expand Down
2 changes: 1 addition & 1 deletion main/i18npool/source/localedata/saxparser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
}
else
{
printf( "couln't create sax-parser component\n" );
printf( "couldn't create sax-parser component\n" );
exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion main/odk/docs/tools.html
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@
</tr>
<tr>
<td class="cell15"><code>add-on</code></td>
<td class="cell85">generates 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.</td>
<td class="cell85">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.</td>
</tr>
</table>
</p>
Expand Down
6 changes: 3 additions & 3 deletions main/offapi/com/sun/star/text/AccessiblePageView.idl
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ published service AccessiblePageView
<li><type scope="::com::sun::star::text"
>AccessibleHeaderFooterView</type>:
A child of this kind is returned for every header
and footer that is conatined in the page.
and footer that is contained in the page.
<li><type scope="::com::sun::star::text"
>AccessibleFootnoteView</type>:
A child of this kind is returned for every footnote
that is conatined in the page.
that is contained in the page.
<li><type scope="::com::sun::star::text"
>AccessibleEndnoteView</type>:
A child of this kind is returned for every endnote
that is conatined in the page.
that is contained in the page.
<li><type scope="::com::sun::star::text"
>AccessibleParagraphView</type>:
A child of this kind is returned for every paragraph
Expand Down
2 changes: 1 addition & 1 deletion main/offapi/com/sun/star/ucb/RuleSet.idl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module com { module sun { module star { module ucb {
published struct RuleSet
{
//-------------------------------------------------------------------------
/** conatains a number of rules.
/** contains a number of rules.
*/
sequence<com::sun::star::ucb::Rule> Rules;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void _HandlerFactories() {
}

/**
* Call the method <CODE>getPropertyOrderIndex()</CODE> with an invalid propety name.
* Call the method <CODE>getPropertyOrderIndex()</CODE> with an invalid property name.
* Has <CODE>OK</CODE> status if the returned index is "0".
*/
public void _getPropertyOrderIndex() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

/**
* Test for object which is represented by collection of
* text fields conained in the text of a page header. <p>
* text fields contained in the text of a page header. <p>
*
* Object implements the following interfaces :
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@


/**
* Test for object which is represented by accessible compoent of
* Test for object which is represented by accessible component of
* check box in 'InsertTable' dialog. <p>
*
* Object implements the following interfaces :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading