Kaydet (Commit) 4852ca0f authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Julien Nabet

Fix typo

Change-Id: I794be89bed433e813feaecffce9464d087ddde61
Reviewed-on: https://gerrit.libreoffice.org/70105
Tested-by: Jenkins
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst e15c980e
...@@ -74,13 +74,13 @@ Any SAL_CALL FrameControl::queryInterface( const Type& rType ) ...@@ -74,13 +74,13 @@ Any SAL_CALL FrameControl::queryInterface( const Type& rType )
Reference< XInterface > xDel = BaseControl::impl_getDelegator(); Reference< XInterface > xDel = BaseControl::impl_getDelegator();
if ( xDel.is() ) if ( xDel.is() )
{ {
// If an delegator exist, forward question to his queryInterface. // If a delegator exists, forward question to its queryInterface.
// Delegator will ask his own queryAggregation! // Delegator will ask its own queryAggregation!
aReturn = xDel->queryInterface( rType ); aReturn = xDel->queryInterface( rType );
} }
else else
{ {
// If an delegator unknown, forward question to own queryAggregation. // If a delegator is unknown, forward question to own queryAggregation.
aReturn = queryAggregation( rType ); aReturn = queryAggregation( rType );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment