diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-09-15 13:18:35 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-09-15 13:18:35 +0200 |
commit | a579ad2c086f1854f7bb6058ec590d1427e72984 (patch) | |
tree | 8f1eae4c631f5237e6292509e0263eb3cf87d493 /chart2 | |
parent | fb98459e66461f5ff82d849decb170ee0d81a391 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ia6a14d2365fe0a31892517387035e4ebec1f25eb
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx b/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx index 7402c3bb3c7d..5caee3847f46 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSeriesOrDiagramProperty.hxx @@ -72,7 +72,7 @@ public: ::chart::DiagramHelper::getDataSeriesFromDiagram( m_spChart2ModelContact->getChart2Diagram() ) ); ::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries > >::const_iterator aIter = aSeriesVector.begin(); - for( ; aIter != aSeriesVector.end(); aIter++ ) + for( ; aIter != aSeriesVector.end(); ++aIter ) { PROPERTYTYPE aCurValue = getValueFromSeries( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >::query( *aIter ) ); if( !bHasDetectableInnerValue ) @@ -101,7 +101,7 @@ public: ::chart::DiagramHelper::getDataSeriesFromDiagram( m_spChart2ModelContact->getChart2Diagram() ) ); ::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries > >::const_iterator aIter = aSeriesVector.begin(); - for( ; aIter != aSeriesVector.end(); aIter++ ) + for( ; aIter != aSeriesVector.end(); ++aIter ) { ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xSeriesPropertySet( *aIter, ::com::sun::star::uno::UNO_QUERY ); if( xSeriesPropertySet.is() ) |