diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-06-14 09:46:37 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-06-16 15:38:04 +0200 |
commit | de8a82d9ac6ce02416aa820f82b5a3ea2598ec1c (patch) | |
tree | 21d46535d7c504d21860e7d01e765bfdf7e99314 /xmloff/source | |
parent | ae85b56a9a18657a57fd5033faff34e7ee4ff2f8 (diff) |
use the implicit conversion
Change-Id: I1d4739721c297e6d5605d93b6e86e114ea12db85
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/chart/SchXMLTableContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/chart/SchXMLTableContext.cxx b/xmloff/source/chart/SchXMLTableContext.cxx index 206e5e839227..6d50672b72c0 100644 --- a/xmloff/source/chart/SchXMLTableContext.cxx +++ b/xmloff/source/chart/SchXMLTableContext.cxx @@ -859,8 +859,8 @@ void SchXMLTableHelper::applyTableToInternalDataProvider( try { Reference< beans::XPropertySet > xProps( xChartDoc, uno::UNO_QUERY_THROW ); - xProps->setPropertyValue( OUString( "DisableDataTableDialog" ), uno::makeAny( sal_True ) ); - xProps->setPropertyValue( OUString( "DisableComplexChartTypes" ), uno::makeAny( sal_True ) ); + xProps->setPropertyValue( "DisableDataTableDialog", uno::makeAny( sal_True ) ); + xProps->setPropertyValue( "DisableComplexChartTypes", uno::makeAny( sal_True ) ); } catch ( uno::Exception& ) { |