summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-01-04 12:44:22 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-01-07 12:29:04 +0000
commit597e694e7e3264cf5d42b177bec38585ccb21232 (patch)
treedd4082a99cb600f9e0cf09dfaeee1174f26f46d7 /comphelper
parent5e0d36adc3f7f245edfc79230d0871017ba15d5d (diff)
Fix typos
Change-Id: I90b04b8eda6fc3d530c9db72052720cbe9de0343 Reviewed-on: https://gerrit.libreoffice.org/21197 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/qa/complex/comphelper/Map.java2
-rw-r--r--comphelper/source/misc/accessibleeventnotifier.cxx6
-rw-r--r--comphelper/source/misc/accessiblewrapper.cxx2
-rw-r--r--comphelper/source/misc/numberedcollection.cxx2
-rw-r--r--comphelper/source/property/propertycontainerhelper.cxx2
5 files changed, 7 insertions, 7 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java
index 278f5a79923c..d01d1bef362b 100644
--- a/comphelper/qa/complex/comphelper/Map.java
+++ b/comphelper/qa/complex/comphelper/Map.java
@@ -313,7 +313,7 @@ public class Map
// - if a map's value type is a scalar type, or a string, then nothing but this
// type should be accepted
// - if a map's value type is an interface type, then values should be accepted if
- // they contain a derived interface, or the interrface itself, or if they can be
+ // they contain a derived interface, or the interface itself, or if they can be
// queried for this interface (actually, the latter rule is not tested with the
// above matrix)
// - if a map's value type is a struct or exception, then values should be accepted
diff --git a/comphelper/source/misc/accessibleeventnotifier.cxx b/comphelper/source/misc/accessibleeventnotifier.cxx
index 8cf351993ef2..0d2cb848d34d 100644
--- a/comphelper/source/misc/accessibleeventnotifier.cxx
+++ b/comphelper/source/misc/accessibleeventnotifier.cxx
@@ -122,7 +122,7 @@ namespace
@return
<TRUE/> if and only if the client could be found and
- <arg>rPos</arg> has been filled with it's position
+ <arg>rPos</arg> has been filled with its position
*/
static bool implLookupClient(
const AccessibleEventNotifier::TClientId nClient,
@@ -157,8 +157,8 @@ namespace comphelper
new ::cppu::OInterfaceContainerHelper( lclMutex::get() );
// note that we're using our own mutex here, so the listener containers for all
// our clients share this same mutex.
- // this is a reminiscense to the days where the notifier was asynchronous. Today this is
- // completely nonsense, and potentially slowing down the Office me thinks ...
+ // this is a reminiscence to the days where the notifier was asynchronous. Today this is
+ // completely nonsense, and potentially slowing down the Office me thinks...
// add the client
Clients::get().insert( ClientMap::value_type( nNewClientId, pNewListeners ) );
diff --git a/comphelper/source/misc/accessiblewrapper.cxx b/comphelper/source/misc/accessiblewrapper.cxx
index 2bb538fa5cbd..75cad7fdb3a9 100644
--- a/comphelper/source/misc/accessiblewrapper.cxx
+++ b/comphelper/source/misc/accessiblewrapper.cxx
@@ -244,7 +244,7 @@ namespace comphelper
if ( m_aChildrenMap.end() == aDisposedPos )
{
OSL_FAIL( "OWrappedAccessibleChildrenManager::disposing: where did this come from?" );
- // helper for dignostics
+ // helper for diagnostics
Reference< XAccessible > xOwningAccessible( m_aOwningAccessible );
Reference< XAccessibleContext > xContext;
try
diff --git a/comphelper/source/misc/numberedcollection.cxx b/comphelper/source/misc/numberedcollection.cxx
index 1056a5e566ab..d0d86d751696 100644
--- a/comphelper/source/misc/numberedcollection.cxx
+++ b/comphelper/source/misc/numberedcollection.cxx
@@ -75,7 +75,7 @@ void NumberedCollection::setUntitledPrefix(const OUString& sPrefix)
sal_IntPtr pComponent = reinterpret_cast<sal_IntPtr>( xComponent.get() );
TNumberedItemHash::const_iterator pIt = m_lComponents.find (pComponent);
- // a) component already exists - return it's number directly
+ // a) component already exists - return its number directly
if (pIt != m_lComponents.end())
return pIt->second.nNumber;
diff --git a/comphelper/source/property/propertycontainerhelper.cxx b/comphelper/source/property/propertycontainerhelper.cxx
index 3ed8fc4f83f7..b84dd766e888 100644
--- a/comphelper/source/property/propertycontainerhelper.cxx
+++ b/comphelper/source/property/propertycontainerhelper.cxx
@@ -127,7 +127,7 @@ void OPropertyContainerHelper::registerPropertyNoMember(const OUString& _rName,
OSL_ENSURE(!_rType.equals(cppu::UnoType<Any>::get()),
"OPropertyContainerHelper::registerPropertyNoMember : don't give my the type of an uno::Any ! Really can't handle this !");
OSL_ENSURE(_pInitialValue || ((_nAttributes & PropertyAttribute::MAYBEVOID) != 0),
- "OPropertyContainerHelper::registerPropertyNoMember : you should not omit the initial value if the property can't be void ! This will definitivly crash later !");
+ "OPropertyContainerHelper::registerPropertyNoMember : you should not omit the initial value if the property can't be void! This will definitively crash later!");
PropertyDescription aNewProp;
aNewProp.aProperty = Property( _rName, _nHandle, _rType, (sal_Int16)_nAttributes );