Typo: easiear->easier

Change-Id: I4e10f74e46ef79c3a56dcfb3d1e1bb90d8b5aecf
This commit is contained in:
Julien Nabet
2014-06-29 00:11:19 +02:00
parent 298055aec2
commit b232607e45
4 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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 );

View File

@@ -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 );

View File

@@ -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);