diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-26 14:17:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-27 10:27:34 +0200 |
commit | d0edd3dc7d69d181f8452b8faf3863ddac542f9b (patch) | |
tree | dd8fb50092e151655ebab3af67120b1507c1e7cb | |
parent | 988a6c418d58f4031238010cb047cd006d48960b (diff) |
remove unused code in ScCellIterator
Specifically:
ScCellIterator::getValue()
ScCellIterator::hasNumeric() const
Change-Id: If15c627789576772bb220ece0b9dd143b1374a1b
-rw-r--r-- | sc/inc/dociter.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/dociter.cxx | 10 | ||||
-rw-r--r-- | unusedcode.easy | 2 |
3 files changed, 0 insertions, 14 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx index 0a8ef91760da..b906dd91015d 100644 --- a/sc/inc/dociter.hxx +++ b/sc/inc/dociter.hxx @@ -220,12 +220,10 @@ public: const EditTextObject* getEditText() const; ScFormulaCell* getFormulaCell(); const ScFormulaCell* getFormulaCell() const; - double getValue(); ScCellValue getCellValue() const; const ScRefCellValue& getRefCellValue() const; bool hasString() const; - bool hasNumeric() const; bool hasEmptyData() const; bool isEmpty() const; bool equalsWithoutFormat( const ScAddress& rPos ) const; diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx index 0b3daef7a7f4..53d8af33421e 100644 --- a/sc/source/core/data/dociter.cxx +++ b/sc/source/core/data/dociter.cxx @@ -960,11 +960,6 @@ const ScFormulaCell* ScCellIterator::getFormulaCell() const return maCurCell.mpFormula; } -double ScCellIterator::getValue() -{ - return maCurCell.getValue(); -} - ScCellValue ScCellIterator::getCellValue() const { ScCellValue aRet; @@ -1001,11 +996,6 @@ bool ScCellIterator::hasString() const return maCurCell.hasString(); } -bool ScCellIterator::hasNumeric() const -{ - return maCurCell.hasNumeric(); -} - bool ScCellIterator::hasEmptyData() const { if (maCurCell.isEmpty()) diff --git a/unusedcode.easy b/unusedcode.easy index a35497d18ce9..7619af85965e 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -59,8 +59,6 @@ Resource::TestRes() Ruler::GetPageWidth() const SalDisplay::PrintInfo() const SalGraphics::drawTransformedBitmap(basegfx::B2DPoint const&, basegfx::B2DPoint const&, basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*) -ScCellIterator::getValue() -ScCellIterator::hasNumeric() const ScDocument::CreateFormatTable() const ScExtIButton::GetSelected() const ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent() |