diff options
Diffstat (limited to 'chart2/source/model/template/DataInterpreter.cxx')
-rw-r--r-- | chart2/source/model/template/DataInterpreter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/model/template/DataInterpreter.cxx b/chart2/source/model/template/DataInterpreter.cxx index d8ea1c46ce85..a7c0d34bdec9 100644 --- a/chart2/source/model/template/DataInterpreter.cxx +++ b/chart2/source/model/template/DataInterpreter.cxx @@ -205,7 +205,7 @@ sal_Bool SAL_CALL DataInterpreter::isDataCompatible( Reference< data::XDataSource > xSrc( aSeries[i], uno::UNO_QUERY_THROW ); Sequence< Reference< data::XLabeledDataSequence > > aSeq( xSrc->getDataSequences()); if( aSeq.getLength() != 1 ) - return sal_False; + return false; } catch( const uno::Exception & ex ) { @@ -213,7 +213,7 @@ sal_Bool SAL_CALL DataInterpreter::isDataCompatible( } } - return sal_True; + return true; } namespace |