diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-02-06 23:21:40 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-02-06 23:22:30 +0100 |
commit | ac6e8ac7e407887a18bca6c835f85e372a4d0932 (patch) | |
tree | 4011854fc6beb6c4bf03fc278efeeffddedae7d0 /forms/source/component | |
parent | 31ae0011352faa834da8969559430935e81d479f (diff) |
typo fixes in comments
Change-Id: Idd49478d59cd062118fbf8e99d1c8bc5250013fc
Diffstat (limited to 'forms/source/component')
-rw-r--r-- | forms/source/component/DatabaseForm.cxx | 4 | ||||
-rw-r--r-- | forms/source/component/ImageControl.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx index 290aba7d93f0..7b4ac6ad56a3 100644 --- a/forms/source/component/DatabaseForm.cxx +++ b/forms/source/component/DatabaseForm.cxx @@ -266,7 +266,7 @@ Any SAL_CALL ODatabaseForm::queryAggregation(const Type& _rType) throw(RuntimeEx // aggregate interfaces // (ask the aggregated object _after_ the OComponentHelper (base of OFormComponents), - // so calls to the XComponent interface reach us and not the aggreagtion) + // so calls to the XComponent interface reach us and not the aggregation) if (!aReturn.hasValue() && m_xAggregate.is()) aReturn = m_xAggregate->queryAggregation(_rType); } @@ -2740,7 +2740,7 @@ void ODatabaseForm::doShareConnection( const Reference< XPropertySet >& _rxParen OSL_ENSURE( xParentConnComp.is(), "ODatabaseForm::doShareConnection: invalid connection!" ); xParentConnComp->addEventListener( static_cast< XLoadListener* >( this ) ); - // forward the connection to our own aggreagte + // forward the connection to our own aggregate m_bForwardingConnection = sal_True; m_xAggregateSet->setPropertyValue( PROPERTY_ACTIVE_CONNECTION, makeAny( xParentConn ) ); m_bForwardingConnection = sal_False; diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index de07752d77c3..8ec645c141f1 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -212,7 +212,7 @@ StringSequence OImageControlModel::getSupportedServiceNames() throw() //------------------------------------------------------------------------------ Any SAL_CALL OImageControlModel::queryAggregation(const Type& _rType) throw (RuntimeException) { - // Order matters: we want to "override" the XImageProducer interface of the aggreate with out + // Order matters: we want to "override" the XImageProducer interface of the aggregate without // own XImageProducer interface, thus we need to query OImageControlModel_Base first Any aReturn = OImageControlModel_Base::queryInterface( _rType ); |