diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-16 20:08:47 +0200 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-18 19:16:44 +0000 |
commit | d1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 (patch) | |
tree | 941e1e5650db110768d2ace19c891fec4f78fc33 /forms | |
parent | 55bcb865ee09673af06652e507d08d13069eae86 (diff) |
replace <<= with assign for <<= with rhs Any
found by deleting specialization of '<<=' template
Change-Id: I253f15177ab20fd3ef9baf4158da8c662cb47e6c
Reviewed-on: https://gerrit.libreoffice.org/29956
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/Grid.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index b2a793b32374..22c772a4b05d 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -470,7 +470,7 @@ void OGridControlModel::getFastPropertyValue(Any& rValue, sal_Int32 nHandle ) co rValue <<= (sal_Int16)m_nBorder; break; case PROPERTY_ID_BORDERCOLOR: - rValue <<= m_aBorderColor; + rValue = m_aBorderColor; break; case PROPERTY_ID_DEFAULTCONTROL: rValue <<= m_aDefaultControl; diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 21fcc0d9f367..e40dea985742 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -255,7 +255,7 @@ namespace frm switch (_nHandle) { case PROPERTY_ID_BOUNDCOLUMN: - _rValue <<= m_aBoundColumn; + _rValue = m_aBoundColumn; break; case PROPERTY_ID_LISTSOURCETYPE: |