summaryrefslogtreecommitdiff
path: root/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:35:38 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:35:38 +0200
commit79451a0566e95ba10c749e913cb642cd71d95755 (patch)
tree48df04627ffdbdb1c15bb64f3b30585a222b5bec /chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx
parentfb088cdd8d6aed2f82b13b03d8ddb6f7901c5ef2 (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I5bc47d62afa9cf43f4f1978e082bba43920eb10d
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx')
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx16
1 files changed, 8 insertions, 8 deletions
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<bool>::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<bool>::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<bool>::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<bool>::get(),
beans::PropertyAttribute::BOUND
| beans::PropertyAttribute::MAYBEDEFAULT ));
rOutProperties.push_back(
Property( "DataSourceLabelsInFirstColumn",
PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN,
- ::getBooleanCppuType(),
+ cppu::UnoType<bool>::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<bool>::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<bool>::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<bool>::get(),
//#i112666# no PropertyChangeEvent is fired on change so far
beans::PropertyAttribute::MAYBEDEFAULT ) );
}