diff options
author | Noel Grandin <noel@peralex.com> | 2014-12-09 13:28:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-12-09 13:29:12 +0200 |
commit | 360f40544d8b03a9c4fccf8c41a712868af89de5 (patch) | |
tree | 928978740d90f3d4839a06d37c5774e2a38136f7 /chart2 | |
parent | 6eb155dea00a1e312fdc3339406bf168a93a25e7 (diff) |
fix build under gcc
after my commit feb92a5
"inline some strings, they don't need to be in a shared header file"
Change-Id: I60a6fa11d56f3d4648dbedeca062ab27206f2a02
Diffstat (limited to 'chart2')
-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 ____ |