diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-05 09:17:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-05 10:11:33 +0200 |
commit | 146033f5da8ee588c9a4dda93aba64477e174541 (patch) | |
tree | 99fc84a0f5ee143c5c2da55633dc6d3e39af897c /ucb/source | |
parent | 17a2c9e8e2361de27013a25e51f3a3ca729f1b31 (diff) |
spelling instanciate -> instantiate
Change-Id: Ic1393da64328c0dc7e2860334b204139bf537d81
Reviewed-on: https://gerrit.libreoffice.org/38401
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/core/ucbcmds.cxx | 6 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchycontent.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchydatasource.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_docmgr.cxx | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/ucb/source/core/ucbcmds.cxx b/ucb/source/core/ucbcmds.cxx index cdd27d491772..a20089a490b7 100644 --- a/ucb/source/core/ucbcmds.cxx +++ b/ucb/source/core/ucbcmds.cxx @@ -1662,7 +1662,7 @@ void UniversalContentBroker::globalTransfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Can't instanciate target object!", + "Can't instantiate target object!", this ); // Unreachable } @@ -1845,7 +1845,7 @@ void UniversalContentBroker::globalTransfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Can't instanciate source object!", + "Can't instantiate source object!", this ); // Unreachable } @@ -1988,7 +1988,7 @@ uno::Any UniversalContentBroker::checkIn( const ucb::CheckinArgument& rArg, ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >( &aProps, 1 ), xEnv, - "Can't instanciate target object!", + "Can't instantiate target object!", this ); // Unreachable } diff --git a/ucb/source/ucp/hierarchy/hierarchycontent.cxx b/ucb/source/ucp/hierarchy/hierarchycontent.cxx index 012716989b52..8ff414b5816e 100644 --- a/ucb/source/ucp/hierarchy/hierarchycontent.cxx +++ b/ucb/source/ucp/hierarchy/hierarchycontent.cxx @@ -1640,7 +1640,7 @@ void HierarchyContent::transfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Cannot instanciate source object!", + "Cannot instantiate source object!", this ); // Unreachable } diff --git a/ucb/source/ucp/hierarchy/hierarchydatasource.cxx b/ucb/source/ucp/hierarchy/hierarchydatasource.cxx index b9ba11f2eaa5..c632656f86c0 100644 --- a/ucb/source/ucp/hierarchy/hierarchydatasource.cxx +++ b/ucb/source/ucp/hierarchy/hierarchydatasource.cxx @@ -465,14 +465,14 @@ HierarchyDataSource::createInstanceWithArguments( catch ( uno::Exception const & ) { OSL_FAIL( "HierarchyDataSource::createInstanceWithArguments - " - "Cannot instanciate configuration access!" ); + "Cannot instantiate configuration access!" ); throw; } if ( !xConfigAccess.is() ) { OSL_FAIL( "HierarchyDataSource::createInstanceWithArguments - " - "Cannot instanciate configuration access!" ); + "Cannot instantiate configuration access!" ); return xConfigAccess; } diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index afc8a4c49557..72d0ec5acb99 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -1832,7 +1832,7 @@ void Content::transfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Cannot instanciate source object!", + "Cannot instantiate source object!", this ); // Unreachable } diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx index b120960aca72..60bfdc12db2f 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.cxx +++ b/ucb/source/ucp/tdoc/tdoc_content.cxx @@ -2109,7 +2109,7 @@ void Content::transfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Cannot instanciate target object!", + "Cannot instantiate target object!", this ); // Unreachable } @@ -2151,7 +2151,7 @@ void Content::transfer( ucb::IOErrorCode_CANT_READ, uno::Sequence< uno::Any >(&aProps, 1), xEnv, - "Cannot instanciate target object!", + "Cannot instantiate target object!", this ); // Unreachable } diff --git a/ucb/source/ucp/tdoc/tdoc_docmgr.cxx b/ucb/source/ucp/tdoc/tdoc_docmgr.cxx index 1fd8247a9b14..1b91d71f71b1 100644 --- a/ucb/source/ucp/tdoc/tdoc_docmgr.cxx +++ b/ucb/source/ucp/tdoc/tdoc_docmgr.cxx @@ -632,7 +632,7 @@ bool OfficeDocumentsManager::isBasicIDE( } OSL_ENSURE( m_xModuleMgr .is(), - "Could not instanciate ModuleManager service!" ); + "Could not instantiate ModuleManager service!" ); } } |