summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-01-08 06:57:25 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2020-01-08 13:25:05 +0100
commit2e5c4b4081411b77b5e0593225b805d3756f7533 (patch)
tree48ef95101e79cf6a86ee34a6678426b4bc8251de /toolkit
parentcc8eeb3148b88807b4acf4ac3c829fb4f37f9a80 (diff)
Grammar fixes
Change-Id: I6ac6f6abb601aa254e94612e6826488393de8e3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86383 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/controls/grid/gridcontrol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/grid/gridcontrol.cxx b/toolkit/source/controls/grid/gridcontrol.cxx
index f8e0a8b8a5d8..4301415d1263 100644
--- a/toolkit/source/controls/grid/gridcontrol.cxx
+++ b/toolkit/source/controls/grid/gridcontrol.cxx
@@ -131,7 +131,7 @@ UnoGridModel::UnoGridModel( const UnoGridModel& rModel )
if ( !xDataModel.is() )
xDataModel = lcl_getDefaultDataModel_throw( m_xContext );
UnoControlModel::setFastPropertyValue_NoBroadcast( BASEPROPERTY_GRID_DATAMODEL, makeAny( xDataModel ) );
- // do *not* use setFastPropertyValue here: The UnoControlModel ctor did a simple copy of all property values,
+ // do *not* use setFastPropertyValue here: The UnoControlModel ctor made a simple copy of all property values,
// so before this call here, we share our data model with the own of the clone source. setFastPropertyValue,
// then, disposes the old data model - which means the data model which in fact belongs to the clone source.
// so, call the UnoControlModel's impl-method for setting the value.