diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-22 10:11:13 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-22 10:11:13 +0200 |
commit | ff1356ab02a79b47e2b39f57f2a0864334deb5a2 (patch) | |
tree | bda1ef45571118568c53af07622ea4e81f9215ff /oox | |
parent | 85825e0fd54551735ef05b8484f71974734b9135 (diff) |
Avoid reserved identifiers
Change-Id: Ie1664e06dc02f7070e4ef77155e6541c70b2f8e8
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 4 | ||||
-rw-r--r-- | oox/source/ppt/timenode.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index b003b172c5f9..e483b9e46943 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -664,10 +664,10 @@ void ChartExport::ExportContent() return; InitRangeSegmentationProperties( xChartDoc ); // TODO: export chart - _ExportContent( ); + ExportContent_( ); } -void ChartExport::_ExportContent() +void ChartExport::ExportContent_() { Reference< css::chart::XChartDocument > xChartDoc( getModel(), uno::UNO_QUERY ); if( xChartDoc.is()) diff --git a/oox/source/ppt/timenode.cxx b/oox/source/ppt/timenode.cxx index 6c068aca6468..dee91bd649e8 100644 --- a/oox/source/ppt/timenode.cxx +++ b/oox/source/ppt/timenode.cxx @@ -291,7 +291,7 @@ namespace oox { namespace ppt { OUString sString; Sequence< NamedValue > aSeq; - for( int i = 0; i < _NP_SIZE; i++) + for( int i = 0; i < NP_SIZE_; i++) { Any & aValue( maNodeProperties[ i ] ); if( aValue.hasValue() ) |