diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-02 23:58:16 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-03 01:16:27 +0200 |
commit | b43bdd47fe7b6fccb4ca490b5b3a91d71113cd66 (patch) | |
tree | 36e2777254d98277fd19c60a96bcb5e7d589bf3a /oox | |
parent | 6be1128916b9c9441969d9a37a4b6694ac26eb8b (diff) |
WaE: expression result unused
Remopve apparently accidentally leftover initializer parameter list
that now was just a comma expression with no effect.
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 4bdb9dfde7d2..cc50ef9d2a62 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2229,7 +2229,7 @@ void ChartExport::exportYAxis( AxisIdPair aAxisIdPair ) xMajorGrid.set( xAxisYSupp->getYMainGrid(), uno::UNO_QUERY ); // minor grid line - Reference< beans::XPropertySet > xMinorGrid;( xAxisYSupp->getYHelpGrid(), uno::UNO_QUERY ); + Reference< beans::XPropertySet > xMinorGrid; if( bHasYAxisMinorGrid ) xMinorGrid.set( xAxisYSupp->getYHelpGrid(), uno::UNO_QUERY ); |