diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-04-02 23:36:56 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-04-03 07:49:47 +0200 |
commit | 94ac464dd5bbe942e7fc2bb359a4d368fa298bdc (patch) | |
tree | 51da9dbca72c0eb4b30250728951b593ea89b12b /UnoControls/source/controls/progressmonitor.cxx | |
parent | 78f2aa9f5e13ec4cfbb9992e3ce45fcaace83023 (diff) |
Fix typo
Change-Id: I546735f427a47d9ada1589e1861d0cf696788b05
Reviewed-on: https://gerrit.libreoffice.org/70107
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'UnoControls/source/controls/progressmonitor.cxx')
-rw-r--r-- | UnoControls/source/controls/progressmonitor.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index c7da6f15ab17..7e439beb5e60 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -111,13 +111,13 @@ Any SAL_CALL ProgressMonitor::queryInterface( const Type& rType ) css::uno::Reference< XInterface > xDel = BaseContainerControl::impl_getDelegator(); if ( xDel.is() ) { - // If an delegator exist, forward question to his queryInterface. - // Delegator will ask his own queryAggregation! + // If a delegator exists, forward question to its queryInterface. + // Delegator will ask its own queryAggregation! aReturn = xDel->queryInterface( rType ); } else { - // If an delegator unknown, forward question to own queryAggregation. + // If a delegator is unknown, forward question to own queryAggregation. aReturn = queryAggregation( rType ); } |