summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/PolarCoordinateSystem.cxx
diff options
context:
space:
mode:
authorIngrid Halama <iha@openoffice.org>2004-01-17 12:10:08 +0000
committerIngrid Halama <iha@openoffice.org>2004-01-17 12:10:08 +0000
commitb064ca8aa953835e683f3e4679b08c37fc48507d (patch)
treef30b96e3d9039e482432f3e1aa7b8432cd632bfb /chart2/source/model/main/PolarCoordinateSystem.cxx
parent8fb7f58276fd9541f6e17da81965648c8af5519f (diff)
introduced polarcoordinate system + axis + grids + some cleanup
Diffstat (limited to 'chart2/source/model/main/PolarCoordinateSystem.cxx')
-rw-r--r--chart2/source/model/main/PolarCoordinateSystem.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/chart2/source/model/main/PolarCoordinateSystem.cxx b/chart2/source/model/main/PolarCoordinateSystem.cxx
index 9f215a97c15d..53a2e90e4d6c 100644
--- a/chart2/source/model/main/PolarCoordinateSystem.cxx
+++ b/chart2/source/model/main/PolarCoordinateSystem.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: PolarCoordinateSystem.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: bm $ $Date: 2003-10-06 09:58:31 $
+ * last change: $Author: iha $ $Date: 2004-01-17 13:09:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,6 +61,7 @@
#include "PolarCoordinateSystem.hxx"
#include "PolarTransformation.hxx"
#include "macros.hxx"
+#include "servicenames_coosystems.hxx"
using ::com::sun::star::uno::RuntimeException;
using ::com::sun::star::uno::Sequence;
@@ -101,6 +102,15 @@ sal_Int32 SAL_CALL PolarCoordinateSystem::getDimension() throw (RuntimeException
return m_nDim;
}
+::rtl::OUString SAL_CALL PolarCoordinateSystem::getCoordinateSystemType() throw (RuntimeException)
+{
+ return CHART2_COOSYSTEM_POLAR_SERVICE_NAME;
+}
+
+::rtl::OUString SAL_CALL PolarCoordinateSystem::getViewServiceName() throw (RuntimeException)
+{
+ return CHART2_COOSYSTEM_POLAR_VIEW_SERVICE_NAME;
+}
// ____ XServiceInfo ____