diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-02-02 12:23:34 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-02-02 12:23:34 +0100 |
commit | 6ea69f07c73f2c2e392061c6d120efcf3ee2b26c (patch) | |
tree | 4f32739d8c2f1da3e7d4c80bb5b9a6c9ace6b9e4 /xmloff | |
parent | 50669de68785d61534c4c3fe101fd8e1d12fae65 (diff) |
xmloff: fix loplugin:stringconstant
Change-Id: I3a1758982ae8ede32e5a25bb702b6d9f37e1a0a3
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 0243a79e4434..b1c58a0458a8 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -426,7 +426,7 @@ Reference< chart2::data::XDataSource > lcl_pressUsedDataIntoRectangularFormat( c aLabeledSeqVector.push_back( xXValues ); //add all other sequences now without x-values - lcl_MatchesRole aHasXValues( OUString( "values-x" ) ); + lcl_MatchesRole aHasXValues( "values-x" ); for( sal_Int32 nN=0; nN<aSeriesSeqVector.getLength(); nN++ ) { if( !aHasXValues( aSeriesSeqVector[nN] ) ) |