tdf#158068 Use OUString literals in DataInterpreter.cxx
Change-Id: I53c620921a93265513dcb4460d73902eff97ed5c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181647 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
This commit is contained in:
committed by
Mike Kaganski
parent
38024bc955
commit
391e1d1a39
@@ -406,7 +406,7 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
|
||||
{
|
||||
if( aSequences[k].is())
|
||||
{
|
||||
OUString aSourceRepr("<none>");
|
||||
OUString aSourceRepr(u"<none>"_ustr);
|
||||
if( aSequences[k]->getValues().is())
|
||||
aSourceRepr = aSequences[k]->getValues()->getSourceRangeRepresentation();
|
||||
xProp.set( aSequences[k]->getValues(), uno::UNO_QUERY );
|
||||
@@ -420,7 +420,7 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
|
||||
SAL_INFO("chart2", " <data sequence " << k << "> unknown Role, Source: " << aSourceRepr );
|
||||
}
|
||||
|
||||
aSourceRepr = "<none>";
|
||||
aSourceRepr = u"<none>"_ustr;
|
||||
if( aSequences[k]->getLabel().is())
|
||||
aSourceRepr = aSequences[k]->getLabel()->getSourceRangeRepresentation();
|
||||
xProp.set( aSequences[k]->getLabel(), uno::UNO_QUERY );
|
||||
|
Reference in New Issue
Block a user