summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpitemdata.cxx
diff options
context:
space:
mode:
authorSantiago Martinez <smvarela@gmail.com>2012-03-12 20:38:51 +0100
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-03-12 17:12:13 -0400
commit8a10f9e3e9ecc2f2b626ce27c3a105dffbde5373 (patch)
treecf0613a7455e035a5aeb48f8bc4aa8a01f480ee1 /sc/source/core/data/dpitemdata.cxx
parent6f7bf17e3147c2064362216d6b60df9f6818535a (diff)
Remove unused code in dpitemdata
Diffstat (limited to 'sc/source/core/data/dpitemdata.cxx')
-rw-r--r--sc/source/core/data/dpitemdata.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/sc/source/core/data/dpitemdata.cxx b/sc/source/core/data/dpitemdata.cxx
index 77c01b94c6de..dd370ca41fba 100644
--- a/sc/source/core/data/dpitemdata.cxx
+++ b/sc/source/core/data/dpitemdata.cxx
@@ -112,9 +112,6 @@ void ScDPItemData::DisposeString()
ScDPItemData::ScDPItemData(const rtl::OUString& rStr) :
mpString(new rtl::OUString(rStr)), meType(String) {}
-ScDPItemData::ScDPItemData(double fVal) :
- mfValue(fVal), meType(Value) {}
-
ScDPItemData::ScDPItemData(sal_Int32 nGroupType, sal_Int32 nValue) :
meType(GroupValue)
{
@@ -167,14 +164,6 @@ void ScDPItemData::SetRangeLast()
meType = RangeStart;
}
-void ScDPItemData::SetGroupValue(sal_Int32 nGroupType, sal_Int32 nValue)
-{
- DisposeString();
- maGroupValue.mnGroupType = nGroupType;
- maGroupValue.mnValue = nValue;
- meType = GroupValue;
-}
-
void ScDPItemData::SetErrorString(const rtl::OUString& rS)
{
SetString(rS);