summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-16 20:08:47 +0200
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-18 19:16:44 +0000
commitd1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 (patch)
tree941e1e5650db110768d2ace19c891fec4f78fc33 /svtools
parent55bcb865ee09673af06652e507d08d13069eae86 (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 'svtools')
-rw-r--r--svtools/source/graphic/renderer.cxx2
-rw-r--r--svtools/source/uno/unoiface.cxx14
2 files changed, 8 insertions, 8 deletions
diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx
index 250be8d46a07..161707f22264 100644
--- a/svtools/source/graphic/renderer.cxx
+++ b/svtools/source/graphic/renderer.cxx
@@ -246,7 +246,7 @@ void GraphicRendererVCL::_getPropertyValues( const comphelper::PropertyMapEntry*
case UNOGRAPHIC_RENDERDATA:
{
- *pValues <<= maRenderData;
+ *pValues = maRenderData;
}
break;
}
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index ab1d20f9332b..b286fa1a5cd0 100644
--- a/svtools/source/uno/unoiface.cxx
+++ b/svtools/source/uno/unoiface.cxx
@@ -502,7 +502,7 @@ css::uno::Any VCLXMultiLineEdit::getProperty( const OUString& PropertyName ) thr
break;
default:
{
- aProp <<= VCLXWindow::getProperty( PropertyName );
+ aProp = VCLXWindow::getProperty( PropertyName );
}
}
}
@@ -967,16 +967,16 @@ css::uno::Any SVTXFormattedField::getProperty( const OUString& PropertyName ) th
{
case BASEPROPERTY_EFFECTIVE_MIN:
case BASEPROPERTY_VALUEMIN_DOUBLE:
- aReturn <<= GetMinValue();
+ aReturn = GetMinValue();
break;
case BASEPROPERTY_EFFECTIVE_MAX:
case BASEPROPERTY_VALUEMAX_DOUBLE:
- aReturn <<= GetMaxValue();
+ aReturn = GetMaxValue();
break;
case BASEPROPERTY_EFFECTIVE_DEFAULT:
- aReturn <<= GetDefaultValue();
+ aReturn = GetDefaultValue();
break;
case BASEPROPERTY_TREATASNUMBER:
@@ -985,7 +985,7 @@ css::uno::Any SVTXFormattedField::getProperty( const OUString& PropertyName ) th
case BASEPROPERTY_EFFECTIVE_VALUE:
case BASEPROPERTY_VALUE_DOUBLE:
- aReturn <<= GetValue();
+ aReturn = GetValue();
break;
case BASEPROPERTY_VALUESTEP_DOUBLE:
@@ -1014,7 +1014,7 @@ css::uno::Any SVTXFormattedField::getProperty( const OUString& PropertyName ) th
break;
default:
- aReturn <<= VCLXSpinField::getProperty(PropertyName);
+ aReturn = VCLXSpinField::getProperty(PropertyName);
}
}
return aReturn;
@@ -2269,7 +2269,7 @@ css::uno::Any VCLXProgressBar::getProperty( const OUString& PropertyName ) throw
}
break;
default:
- aProp <<= VCLXWindow::getProperty( PropertyName );
+ aProp = VCLXWindow::getProperty( PropertyName );
break;
}
}