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

Fix typo

Change-Id: I546735f427a47d9ada1589e1861d0cf696788b05
Reviewed-on: https://gerrit.libreoffice.org/70107Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 78f2aa9f
...@@ -111,13 +111,13 @@ Any SAL_CALL ProgressMonitor::queryInterface( const Type& rType ) ...@@ -111,13 +111,13 @@ Any SAL_CALL ProgressMonitor::queryInterface( const Type& rType )
css::uno::Reference< XInterface > xDel = BaseContainerControl::impl_getDelegator(); css::uno::Reference< XInterface > xDel = BaseContainerControl::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