[Libreoffice-commits] core.git: chart2/source

Caolán McNamara caolanm at redhat.com
Thu Dec 18 08:01:27 PST 2014


 chart2/source/model/template/AreaChartType.cxx        |    2 +-
 chart2/source/model/template/BarChartType.cxx         |    2 +-
 chart2/source/model/template/BubbleChartType.cxx      |    2 +-
 chart2/source/model/template/CandleStickChartType.cxx |    2 +-
 chart2/source/model/template/ColumnChartType.cxx      |    2 +-
 chart2/source/model/template/FilledNetChartType.cxx   |    2 +-
 chart2/source/model/template/GL3DBarChartType.cxx     |    2 +-
 chart2/source/model/template/LineChartType.cxx        |    2 +-
 chart2/source/model/template/NetChartType.cxx         |    2 +-
 chart2/source/model/template/PieChartType.cxx         |    2 +-
 chart2/source/model/template/ScatterChartType.cxx     |    2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit df35af41685630b70fb460a90ec47f481895ad7f
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Dec 18 15:52:10 2014 +0000

    fix build
    
    Change-Id: I920227cd175dace306ebb16a8e476f483cf11a7a

diff --git a/chart2/source/model/template/AreaChartType.cxx b/chart2/source/model/template/AreaChartType.cxx
index 7f16f17..8446109 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 87823c8..587fc63 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 a2f7549..13cc187 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 eb18c80..85660ee 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 eb1f1c2..6ad30b9 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 35d57e2..c597f42 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 f22e29d..69d8bfc 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 131a39a..8225d68 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 28bf2a5..0047d33 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 1fff9a0..d858675 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 9371959..a198ebe 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()


More information about the Libreoffice-commits mailing list