summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 12:53:36 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 10:27:32 +0200
commitb709688cae4f3a00525fdd17c20852e55f131308 (patch)
tree9c4ce52cb0bb825b14a505e3e1e16edab497146b /sc
parent297c4d4021c2818cb8a51fabfc074d172927f897 (diff)
remove unused data ScComplexRefData::IsDeleted()
Change-Id: I06d44a709f18b457c3d3381e2c6f4636fbffd4f0
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/refdata.hxx1
-rw-r--r--sc/source/core/tool/refdata.cxx5
2 files changed, 0 insertions, 6 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx
index 2d942999123a..8d9e5fb55892 100644
--- a/sc/inc/refdata.hxx
+++ b/sc/inc/refdata.hxx
@@ -135,7 +135,6 @@ struct ScComplexRefData
Ref2.InitAddress( nCol2, nRow2, nTab2 );
}
- bool IsDeleted() const;
bool Valid() const;
/** In external references nTab is -1 for the start tab and -1 for the end
diff --git a/sc/source/core/tool/refdata.cxx b/sc/source/core/tool/refdata.cxx
index 8a86a1cf1803..9a5bb0ca4431 100644
--- a/sc/source/core/tool/refdata.cxx
+++ b/sc/source/core/tool/refdata.cxx
@@ -311,11 +311,6 @@ ScComplexRefData& ScComplexRefData::Extend( const ScComplexRefData & rRef, const
return Extend( rRef.Ref1, rPos).Extend( rRef.Ref2, rPos);
}
-bool ScComplexRefData::IsDeleted() const
-{
- return Ref1.IsDeleted() || Ref2.IsDeleted();
-}
-
bool ScComplexRefData::Valid() const
{
return Ref1.Valid() && Ref2.Valid();