diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-04-02 23:37:42 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-04-03 07:07:13 +0200 |
commit | 4852ca0f867a624b975e00be8878aa338dfbe971 (patch) | |
tree | 935d306fae0e0b1669fb771d81c31ace65b077df /UnoControls | |
parent | e15c980e70360bb7ca8bd6730b700bfe215f1278 (diff) |
Fix typo
Change-Id: I794be89bed433e813feaecffce9464d087ddde61
Reviewed-on: https://gerrit.libreoffice.org/70105
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'UnoControls')
-rw-r--r-- | UnoControls/source/controls/framecontrol.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx index 14b115d5accd..5c0bcc29e584 100644 --- a/UnoControls/source/controls/framecontrol.cxx +++ b/UnoControls/source/controls/framecontrol.cxx @@ -74,13 +74,13 @@ Any SAL_CALL FrameControl::queryInterface( const Type& rType ) Reference< XInterface > xDel = BaseControl::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 ); } |