Kaydet (Commit) 297fd836 authored tarafından Julien Nabet's avatar Julien Nabet

Typo: multible->multiple

Change-Id: I1c61841be58d49132ac3c69a6b227d75e829f769
Reviewed-on: https://gerrit.libreoffice.org/23972Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst efa26982
...@@ -146,7 +146,7 @@ void OComponentHelper::dispose() ...@@ -146,7 +146,7 @@ void OComponentHelper::dispose()
// Make it robust, hold a self Reference. // Make it robust, hold a self Reference.
Reference<XComponent > xSelf( this ); Reference<XComponent > xSelf( this );
// Guard dispose against multible threading // Guard dispose against multiple threading
// Remark: It is an error to call dispose more than once // Remark: It is an error to call dispose more than once
bool bDoDispose = false; bool bDoDispose = false;
{ {
......
...@@ -1129,7 +1129,7 @@ void test_PropertySetHelper() ...@@ -1129,7 +1129,7 @@ void test_PropertySetHelper()
OSL_ENSURE( pPS_L->nCount == pPS_L->nCurrent, "not all listeners called" ); OSL_ENSURE( pPS_L->nCount == pPS_L->nCurrent, "not all listeners called" );
//vetoable exception with multible //vetoable exception with multiple
szPN[0] = "INT16"; szPN[0] = "INT16";
szPN[1] = "INT16"; szPN[1] = "INT16";
pPS->nINT32 = 0; pPS->nINT32 = 0;
......
...@@ -123,7 +123,7 @@ void SvxDrawPage::dispose() ...@@ -123,7 +123,7 @@ void SvxDrawPage::dispose()
// Make it robust, hold a self Reference. // Make it robust, hold a self Reference.
uno::Reference< lang::XComponent > xSelf( this ); uno::Reference< lang::XComponent > xSelf( this );
// Guard dispose against multible threading // Guard dispose against multiple threading
// Remark: It is an error to call dispose more than once // Remark: It is an error to call dispose more than once
bool bDoDispose = false; bool bDoDispose = false;
{ {
......
...@@ -141,7 +141,7 @@ void SvxShapeCollection::dispose() ...@@ -141,7 +141,7 @@ void SvxShapeCollection::dispose()
// Make it robust, hold a self Reference. // Make it robust, hold a self Reference.
uno::Reference< lang::XComponent > xSelf( this ); uno::Reference< lang::XComponent > xSelf( this );
// Guard dispose against multible threading // Guard dispose against multiple threading
// Remark: It is an error to call dispose more than once // Remark: It is an error to call dispose more than once
bool bDoDispose = false; bool bDoDispose = false;
{ {
......
...@@ -662,7 +662,7 @@ void UnoControl::ImplModelPropertiesChanged( const Sequence< PropertyChangeEvent ...@@ -662,7 +662,7 @@ void UnoControl::ImplModelPropertiesChanged( const Sequence< PropertyChangeEvent
void UnoControl::disposing( const EventObject& rEvt ) throw(RuntimeException, std::exception) void UnoControl::disposing( const EventObject& rEvt ) throw(RuntimeException, std::exception)
{ {
::osl::ClearableMutexGuard aGuard( GetMutex() ); ::osl::ClearableMutexGuard aGuard( GetMutex() );
// do not compare differing types in case of multible inheritance // do not compare differing types in case of multiple inheritance
if ( maAccessibleContext.get() == rEvt.Source ) if ( maAccessibleContext.get() == rEvt.Source )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment