summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-05-16 23:27:08 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-05-16 23:28:22 +0900
commitb2022330c01ae2080f4c2bc01be430b0b6faf9d8 (patch)
tree0e9fc2507b8598b93bc1410688a8c6271a675fbd /chart2
parent2dd60383c119d80eff7188ddf003ce9d27ef7519 (diff)
removed unused constant rtl::OUString
Change-Id: I173275e0f8faa852500d108f65636080f79636c6
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/tools/Scaling.cxx8
-rw-r--r--chart2/source/view/axes/DateScaling.cxx5
2 files changed, 0 insertions, 13 deletions
diff --git a/chart2/source/tools/Scaling.cxx b/chart2/source/tools/Scaling.cxx
index 38d25d53193e..e62b25d5b268 100644
--- a/chart2/source/tools/Scaling.cxx
+++ b/chart2/source/tools/Scaling.cxx
@@ -42,14 +42,6 @@ static const ::rtl::OUString lcl_aServiceName_Linear(
static const ::rtl::OUString lcl_aServiceName_Power(
RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.chart2.PowerScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_Logarithmic(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.LogarithmicScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_Exponential(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.ExponentialScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_Linear(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.LinearScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_Power(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.PowerScaling" ));
}
//.............................................................................
diff --git a/chart2/source/view/axes/DateScaling.cxx b/chart2/source/view/axes/DateScaling.cxx
index cb532ab79f5f..66e6c2e23dc5 100644
--- a/chart2/source/view/axes/DateScaling.cxx
+++ b/chart2/source/view/axes/DateScaling.cxx
@@ -39,11 +39,6 @@ static const ::rtl::OUString lcl_aServiceName_DateScaling(
static const ::rtl::OUString lcl_aServiceName_InverseDateScaling(
RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.chart2.InverseDateScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_DateScaling(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.DateScaling" ));
-static const ::rtl::OUString lcl_aImplementationName_InverseDateScaling(
- RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.chart2.InverseDateScaling" ));
-
static const double lcl_fNumberOfMonths = 12.0;//todo: this needs to be offered by basic tools Date class if it should be more generic
}