[Libreoffice-commits] core.git: 2 commits - comphelper/source filter/source framework/source odk/examples ucb/source
Julien Nabet
serval2412 at yahoo.fr
Sat Jun 28 15:15:28 PDT 2014
comphelper/source/container/embeddedobjectcontainer.cxx | 2 +-
filter/source/config/cache/basecontainer.cxx | 2 +-
framework/source/services/desktop.cxx | 2 +-
framework/source/services/frame.cxx | 2 +-
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java | 2 +-
ucb/source/core/ucbstore.cxx | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
New commits:
commit 4ddf6c7a70738c10b21acfcf041a5b9af560045c
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Jun 29 00:12:55 2014 +0200
Typo: conteiner->container
Change-Id: Idf1294c7da00621900d41c16473b862ee8fc502d
diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx b/comphelper/source/container/embeddedobjectcontainer.cxx
index 9437893..9286ec8 100644
--- a/comphelper/source/container/embeddedobjectcontainer.cxx
+++ b/comphelper/source/container/embeddedobjectcontainer.cxx
@@ -1440,7 +1440,7 @@ bool EmbeddedObjectContainer::StoreAsChildren(bool _bOasisFormat,bool _bCreateEm
{
try
{
- // the substorage still can not be locked by the embedded object conteiner
+ // the substorage still can not be locked by the embedded object container
OUString aObjReplElement( "ObjectReplacements" );
if ( _xStorage->hasByName( aObjReplElement ) && _xStorage->isStorageElement( aObjReplElement ) )
_xStorage->removeElement( aObjReplElement );
diff --git a/ucb/source/core/ucbstore.cxx b/ucb/source/core/ucbstore.cxx
index 421b364..862f554 100644
--- a/ucb/source/core/ucbstore.cxx
+++ b/ucb/source/core/ucbstore.cxx
@@ -354,7 +354,7 @@ PropertySetRegistry::openPropertySet( const OUString& key, sal_Bool create )
OSL_ENSURE( xContainer.is(),
"PropertySetRegistry::openPropertySet - "
- "No conteiner!" );
+ "No container!" );
if ( xFac.is() && xBatch.is() && xContainer.is() )
{
commit b232607e4558f652dd47bc834dc500103ff9f7e3
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Jun 29 00:11:19 2014 +0200
Typo: easiear->easier
Change-Id: I4e10f74e46ef79c3a56dcfb3d1e1bb90d8b5aecf
diff --git a/filter/source/config/cache/basecontainer.cxx b/filter/source/config/cache/basecontainer.cxx
index 439018c..00d85e0 100644
--- a/filter/source/config/cache/basecontainer.cxx
+++ b/filter/source/config/cache/basecontainer.cxx
@@ -465,7 +465,7 @@ css::uno::Reference< css::container::XEnumeration > SAL_CALL BaseContainer::crea
/* Note: Its not allowed to return NULL. Because an empty enumeration
transport the same information but make no trouble outside.
- Further its easiear to work directly with the return value
+ Further its easier to work directly with the return value
instaed of checking of NULL returns! */
css::uno::Sequence< OUString > lSubSet;
diff --git a/framework/source/services/desktop.cxx b/framework/source/services/desktop.cxx
index 2bf3a09..a62c649 100644
--- a/framework/source/services/desktop.cxx
+++ b/framework/source/services/desktop.cxx
@@ -106,7 +106,7 @@ void Desktop::constructorInit()
// Initialize a new interception helper object to handle dispatches and implement an interceptor mechanism.
// Set created dispatch provider as slowest slave of it.
// Hold interception helper by reference only - not by pointer!
- // So it's easiear to destroy it.
+ // So it's easier to destroy it.
InterceptionHelper* pInterceptionHelper = new InterceptionHelper( this, xDispatchProvider );
m_xDispatchHelper = css::uno::Reference< css::frame::XDispatchProvider >( static_cast< ::cppu::OWeakObject* >(pInterceptionHelper), css::uno::UNO_QUERY );
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 4210bd0..5ee93f5 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -529,7 +529,7 @@ void Frame::initListeners()
// Initialize a new interception helper object to handle dispatches and implement an interceptor mechanism.
// Set created dispatch provider as slowest slave of it.
// Hold interception helper by reference only - not by pointer!
- // So it's easiear to destroy it.
+ // So it's easier to destroy it.
InterceptionHelper* pInterceptionHelper = new InterceptionHelper( this, xDispatchProvider );
m_xDispatchHelper = css::uno::Reference< css::frame::XDispatchProvider >( static_cast< ::cppu::OWeakObject* >(pInterceptionHelper), css::uno::UNO_QUERY );
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index 511314d..d82a5bb 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -601,7 +601,7 @@ public class AsciiReplaceFilter
private String implts_replace( StringBuffer rBuffer, FilterOptions aOptions )
{
// replace complete strings first
- // Because its easiear on a buffer then on a string
+ // Because its easier on a buffer then on a string
if ( ! aOptions.m_sOld.equals(aOptions.m_sNew) )
{
int nStart = rBuffer.indexOf(aOptions.m_sOld);
More information about the Libreoffice-commits
mailing list