diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-01-29 12:59:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-01-29 13:47:08 +0100 |
commit | 0e57d54e1f8fe81d870ae18d6401f5ce104deb17 (patch) | |
tree | 88fbddfb4160e18290b32ed859e8de637bd898fb /sc/source | |
parent | 12ebf6f72b2b3c9f66be767933835cde848d8e48 (diff) |
oox: replace boost::bind with std::bind
Change-Id: Ic402cfd6900cdf1741264b409f6fbe8f2db7e17a
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/oox/pivottablebuffer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/oox/pivottablebuffer.cxx b/sc/source/filter/oox/pivottablebuffer.cxx index 7756adad72d0..35a5ad402a39 100644 --- a/sc/source/filter/oox/pivottablebuffer.cxx +++ b/sc/source/filter/oox/pivottablebuffer.cxx @@ -1189,7 +1189,7 @@ void PivotTable::finalizeImport() aDescProp.setProperty( PROP_DrillDownOnDoubleClick, maDefModel.mbEnableDrill ); // finalize all fields, this finds field names and creates grouping fields - maFields.forEachMem( &PivotTableField::finalizeImport, ::boost::cref( mxDPDescriptor ) ); + maFields.forEachMem(&PivotTableField::finalizeImport, ::std::cref(mxDPDescriptor)); // all row fields for( IndexVector::iterator aIt = maRowFields.begin(), aEnd = maRowFields.end(); aIt != aEnd; ++aIt ) @@ -1252,7 +1252,7 @@ void PivotTable::finalizeImport() void PivotTable::finalizeDateGroupingImport( const Reference< XDataPilotField >& rxBaseDPField, sal_Int32 nBaseFieldIdx ) { // process all fields, there is no chaining information in the cache fields - maFields.forEachMem( &PivotTableField::finalizeDateGroupingImport, ::boost::cref( rxBaseDPField ), nBaseFieldIdx ); + maFields.forEachMem( &PivotTableField::finalizeDateGroupingImport, ::std::cref(rxBaseDPField), nBaseFieldIdx ); } void PivotTable::finalizeParentGroupingImport( const Reference< XDataPilotField >& rxBaseDPField, |