diff options
-rw-r--r-- | chart2/source/model/main/CartesianCoordinateSystem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/model/main/CartesianCoordinateSystem.cxx b/chart2/source/model/main/CartesianCoordinateSystem.cxx index c6ad005ebba7..47b7b0c9fc52 100644 --- a/chart2/source/model/main/CartesianCoordinateSystem.cxx +++ b/chart2/source/model/main/CartesianCoordinateSystem.cxx @@ -64,13 +64,13 @@ CartesianCoordinateSystem::~CartesianCoordinateSystem() OUString SAL_CALL CartesianCoordinateSystem::getCoordinateSystemType() throw (RuntimeException, std::exception) { - return CHART2_COOSYSTEM_CARTESIAN_SERVICE_NAME; + return OUString(CHART2_COOSYSTEM_CARTESIAN_SERVICE_NAME); } OUString SAL_CALL CartesianCoordinateSystem::getViewServiceName() throw (RuntimeException, std::exception) { - return CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME; + return OUString(CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME); } // ____ XCloneable ____ |