summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-06-14 09:46:37 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-06-16 15:38:04 +0200
commitde8a82d9ac6ce02416aa820f82b5a3ea2598ec1c (patch)
tree21d46535d7c504d21860e7d01e765bfdf7e99314 /xmloff
parentae85b56a9a18657a57fd5033faff34e7ee4ff2f8 (diff)
use the implicit conversion
Change-Id: I1d4739721c297e6d5605d93b6e86e114ea12db85
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLTableContext.cxx4
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& )
{