From 79451a0566e95ba10c749e913cb642cd71d95755 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 1 Apr 2015 08:35:38 +0200 Subject: Replace remaining getCppuType et al with cppu::UnoType Change-Id: I5bc47d62afa9cf43f4f1978e082bba43920eb10d --- .../controller/chartapiwrapper/ChartDocumentWrapper.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx') diff --git a/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx b/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx index 2915cd3fbed5..b6a20b89cfa6 100644 --- a/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx +++ b/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx @@ -162,19 +162,19 @@ void lcl_AddPropertiesToVector( rOutProperties.push_back( Property( "HasMainTitle", PROP_DOCUMENT_HAS_MAIN_TITLE, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i111967# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT )); rOutProperties.push_back( Property( "HasSubTitle", PROP_DOCUMENT_HAS_SUB_TITLE, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i111967# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT )); rOutProperties.push_back( Property( "HasLegend", PROP_DOCUMENT_HAS_LEGEND, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i111967# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT )); @@ -182,13 +182,13 @@ void lcl_AddPropertiesToVector( rOutProperties.push_back( Property( "DataSourceLabelsInFirstRow", PROP_DOCUMENT_LABELS_IN_FIRST_ROW, - ::getBooleanCppuType(), + cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT )); rOutProperties.push_back( Property( "DataSourceLabelsInFirstColumn", PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i111967# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT )); @@ -215,7 +215,7 @@ void lcl_AddPropertiesToVector( rOutProperties.push_back( Property( "RefreshAddInAllowed", PROP_DOCUMENT_UPDATE_ADDIN, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i111967# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::TRANSIENT )); @@ -229,13 +229,13 @@ void lcl_AddPropertiesToVector( rOutProperties.push_back( Property( "EnableComplexChartTypes", PROP_DOCUMENT_ENABLE_COMPLEX_CHARTTYPES, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i112666# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT ) ); rOutProperties.push_back( Property( "EnableDataTableDialog", PROP_DOCUMENT_ENABLE_DATATABLE_DIALOG, - ::getBooleanCppuType(), + cppu::UnoType::get(), //#i112666# no PropertyChangeEvent is fired on change so far beans::PropertyAttribute::MAYBEDEFAULT ) ); } -- cgit