diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-18 15:52:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-18 16:00:58 +0000 |
commit | df35af41685630b70fb460a90ec47f481895ad7f (patch) | |
tree | aefe6429189af20590ed0eb162270218ff4b269b /chart2 | |
parent | 82aa4dbd8330eb446cdf535794c13185f0c0ca81 (diff) |
fix build
Change-Id: I920227cd175dace306ebb16a8e476f483cf11a7a
Diffstat (limited to 'chart2')
11 files changed, 11 insertions, 11 deletions
diff --git a/chart2/source/model/template/AreaChartType.cxx b/chart2/source/model/template/AreaChartType.cxx index 7f16f17c7c02..8446109ef0f5 100644 --- a/chart2/source/model/template/AreaChartType.cxx +++ b/chart2/source/model/template/AreaChartType.cxx @@ -50,7 +50,7 @@ uno::Reference< util::XCloneable > SAL_CALL AreaChartType::createClone() OUString SAL_CALL AreaChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_AREA; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_AREA); } uno::Sequence< OUString > AreaChartType::getSupportedServiceNames_Static() diff --git a/chart2/source/model/template/BarChartType.cxx b/chart2/source/model/template/BarChartType.cxx index 87823c84c352..587fc6310b39 100644 --- a/chart2/source/model/template/BarChartType.cxx +++ b/chart2/source/model/template/BarChartType.cxx @@ -51,7 +51,7 @@ uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone() OUString SAL_CALL BarChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_BAR; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_BAR); } uno::Sequence< OUString > BarChartType::getSupportedPropertyRoles() diff --git a/chart2/source/model/template/BubbleChartType.cxx b/chart2/source/model/template/BubbleChartType.cxx index a2f754908caf..13cc1876b4a0 100644 --- a/chart2/source/model/template/BubbleChartType.cxx +++ b/chart2/source/model/template/BubbleChartType.cxx @@ -161,7 +161,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL OUString SAL_CALL BubbleChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_BUBBLE; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_BUBBLE); } uno::Sequence< OUString > SAL_CALL BubbleChartType::getSupportedMandatoryRoles() diff --git a/chart2/source/model/template/CandleStickChartType.cxx b/chart2/source/model/template/CandleStickChartType.cxx index eb18c8038010..85660ee85099 100644 --- a/chart2/source/model/template/CandleStickChartType.cxx +++ b/chart2/source/model/template/CandleStickChartType.cxx @@ -218,7 +218,7 @@ uno::Reference< util::XCloneable > SAL_CALL CandleStickChartType::createClone() OUString SAL_CALL CandleStickChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_CANDLESTICK); } uno::Sequence< OUString > SAL_CALL CandleStickChartType::getSupportedMandatoryRoles() diff --git a/chart2/source/model/template/ColumnChartType.cxx b/chart2/source/model/template/ColumnChartType.cxx index eb1f1c2ad59a..6ad30b9b7c81 100644 --- a/chart2/source/model/template/ColumnChartType.cxx +++ b/chart2/source/model/template/ColumnChartType.cxx @@ -150,7 +150,7 @@ uno::Reference< util::XCloneable > SAL_CALL ColumnChartType::createClone() OUString SAL_CALL ColumnChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_COLUMN; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_COLUMN); } uno::Sequence< OUString > ColumnChartType::getSupportedPropertyRoles() diff --git a/chart2/source/model/template/FilledNetChartType.cxx b/chart2/source/model/template/FilledNetChartType.cxx index 35d57e2f5d00..c597f4280283 100644 --- a/chart2/source/model/template/FilledNetChartType.cxx +++ b/chart2/source/model/template/FilledNetChartType.cxx @@ -65,7 +65,7 @@ uno::Reference< util::XCloneable > SAL_CALL FilledNetChartType::createClone() OUString SAL_CALL FilledNetChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_FILLED_NET; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_FILLED_NET); } uno::Sequence< OUString > FilledNetChartType::getSupportedServiceNames_Static() diff --git a/chart2/source/model/template/GL3DBarChartType.cxx b/chart2/source/model/template/GL3DBarChartType.cxx index f22e29d59074..69d8bfc4d53a 100644 --- a/chart2/source/model/template/GL3DBarChartType.cxx +++ b/chart2/source/model/template/GL3DBarChartType.cxx @@ -136,7 +136,7 @@ uno::Sequence<OUString> GL3DBarChartType::getSupportedServiceNames_Static() OUString SAL_CALL GL3DBarChartType::getChartType() throw (::com::sun::star::uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_GL3DBAR; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_GL3DBAR); } uno::Sequence<OUString> GL3DBarChartType::getSupportedPropertyRoles() diff --git a/chart2/source/model/template/LineChartType.cxx b/chart2/source/model/template/LineChartType.cxx index 131a39a46cb1..8225d68524b6 100644 --- a/chart2/source/model/template/LineChartType.cxx +++ b/chart2/source/model/template/LineChartType.cxx @@ -164,7 +164,7 @@ uno::Reference< util::XCloneable > SAL_CALL LineChartType::createClone() OUString SAL_CALL LineChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_LINE; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_LINE); } // ____ OPropertySet ____ diff --git a/chart2/source/model/template/NetChartType.cxx b/chart2/source/model/template/NetChartType.cxx index 28bf2a5a2638..0047d33478a9 100644 --- a/chart2/source/model/template/NetChartType.cxx +++ b/chart2/source/model/template/NetChartType.cxx @@ -169,7 +169,7 @@ uno::Reference< util::XCloneable > SAL_CALL NetChartType::createClone() OUString SAL_CALL NetChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_NET; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_NET); } uno::Sequence< OUString > NetChartType::getSupportedServiceNames_Static() diff --git a/chart2/source/model/template/PieChartType.cxx b/chart2/source/model/template/PieChartType.cxx index 1fff9a05b8c4..d858675bd72c 100644 --- a/chart2/source/model/template/PieChartType.cxx +++ b/chart2/source/model/template/PieChartType.cxx @@ -155,7 +155,7 @@ uno::Reference< util::XCloneable > SAL_CALL PieChartType::createClone() OUString SAL_CALL PieChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_PIE; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_PIE); } Reference< chart2::XCoordinateSystem > SAL_CALL diff --git a/chart2/source/model/template/ScatterChartType.cxx b/chart2/source/model/template/ScatterChartType.cxx index 937195966783..a198ebe409b8 100644 --- a/chart2/source/model/template/ScatterChartType.cxx +++ b/chart2/source/model/template/ScatterChartType.cxx @@ -213,7 +213,7 @@ Reference< chart2::XCoordinateSystem > SAL_CALL OUString SAL_CALL ScatterChartType::getChartType() throw (uno::RuntimeException, std::exception) { - return CHART2_SERVICE_NAME_CHARTTYPE_SCATTER; + return OUString(CHART2_SERVICE_NAME_CHARTTYPE_SCATTER); } uno::Sequence< OUString > SAL_CALL ScatterChartType::getSupportedMandatoryRoles() |