diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-04-02 23:36:18 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-04-03 07:51:12 +0200 |
commit | d1496ca658650d4e19baa05f72445ab69ca96860 (patch) | |
tree | 1fd696b4d302a849651281a77cc7b79b16ab6ed2 | |
parent | 94ac464dd5bbe942e7fc2bb359a4d368fa298bdc (diff) |
Fix typo
Change-Id: I7831896b8898f0cb20589fbd241b97fcc21db366
Reviewed-on: https://gerrit.libreoffice.org/70108
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | UnoControls/source/controls/statusindicator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx index 4cdf100299ce..c1c9d3597beb 100644 --- a/UnoControls/source/controls/statusindicator.cxx +++ b/UnoControls/source/controls/statusindicator.cxx @@ -76,13 +76,13 @@ Any SAL_CALL StatusIndicator::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 ); } |