summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/config/cache/basecontainer.cxx2
-rw-r--r--framework/source/services/desktop.cxx2
-rw-r--r--framework/source/services/frame.cxx2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/config/cache/basecontainer.cxx b/filter/source/config/cache/basecontainer.cxx
index 439018c2afbe..00d85e062d27 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 2bf3a09930d1..a62c649414f9 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 4210bd0a196c..5ee93f50cbfc 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 511314d5a02a..d82a5bbddbae 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);