Kaydet (Commit) 360f4054 authored tarafından Noel Grandin's avatar Noel Grandin

fix build under gcc

after my commit feb92a5f
"inline some strings, they don't need to be in a shared header file"

Change-Id: I60a6fa11d56f3d4648dbedeca062ab27206f2a02
üst 6eb155de
...@@ -64,13 +64,13 @@ CartesianCoordinateSystem::~CartesianCoordinateSystem() ...@@ -64,13 +64,13 @@ CartesianCoordinateSystem::~CartesianCoordinateSystem()
OUString SAL_CALL CartesianCoordinateSystem::getCoordinateSystemType() OUString SAL_CALL CartesianCoordinateSystem::getCoordinateSystemType()
throw (RuntimeException, std::exception) throw (RuntimeException, std::exception)
{ {
return CHART2_COOSYSTEM_CARTESIAN_SERVICE_NAME; return OUString(CHART2_COOSYSTEM_CARTESIAN_SERVICE_NAME);
} }
OUString SAL_CALL CartesianCoordinateSystem::getViewServiceName() OUString SAL_CALL CartesianCoordinateSystem::getViewServiceName()
throw (RuntimeException, std::exception) throw (RuntimeException, std::exception)
{ {
return CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME; return OUString(CHART2_COOSYSTEM_CARTESIAN_VIEW_SERVICE_NAME);
} }
// ____ XCloneable ____ // ____ XCloneable ____
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment