[Libreoffice-commits] core.git: UnoControls/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Wed Apr 3 06:52:24 UTC 2019
UnoControls/source/base/basecontainercontrol.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit fd33e13d758ec71389ba114360e4828a88ac4181
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue Apr 2 23:35:48 2019 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Wed Apr 3 08:52:02 2019 +0200
Fix typo
Change-Id: I42090a462b15fbc537b0fdb5eaf66f60a213e5ff
Reviewed-on: https://gerrit.libreoffice.org/70103
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/UnoControls/source/base/basecontainercontrol.cxx b/UnoControls/source/base/basecontainercontrol.cxx
index 40bb1dc98166..ffd67a3388b0 100644
--- a/UnoControls/source/base/basecontainercontrol.cxx
+++ b/UnoControls/source/base/basecontainercontrol.cxx
@@ -55,13 +55,13 @@ Any SAL_CALL BaseContainerControl::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 exist, forward question to his 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 );
}
More information about the Libreoffice-commits
mailing list