remove unused code in ScCellIterator
Specifically: ScCellIterator::getValue() ScCellIterator::hasNumeric() const Change-Id: If15c627789576772bb220ece0b9dd143b1374a1b
This commit is contained in:
@@ -220,12 +220,10 @@ public:
|
|||||||
const EditTextObject* getEditText() const;
|
const EditTextObject* getEditText() const;
|
||||||
ScFormulaCell* getFormulaCell();
|
ScFormulaCell* getFormulaCell();
|
||||||
const ScFormulaCell* getFormulaCell() const;
|
const ScFormulaCell* getFormulaCell() const;
|
||||||
double getValue();
|
|
||||||
ScCellValue getCellValue() const;
|
ScCellValue getCellValue() const;
|
||||||
const ScRefCellValue& getRefCellValue() const;
|
const ScRefCellValue& getRefCellValue() const;
|
||||||
|
|
||||||
bool hasString() const;
|
bool hasString() const;
|
||||||
bool hasNumeric() const;
|
|
||||||
bool hasEmptyData() const;
|
bool hasEmptyData() const;
|
||||||
bool isEmpty() const;
|
bool isEmpty() const;
|
||||||
bool equalsWithoutFormat( const ScAddress& rPos ) const;
|
bool equalsWithoutFormat( const ScAddress& rPos ) const;
|
||||||
|
@@ -960,11 +960,6 @@ const ScFormulaCell* ScCellIterator::getFormulaCell() const
|
|||||||
return maCurCell.mpFormula;
|
return maCurCell.mpFormula;
|
||||||
}
|
}
|
||||||
|
|
||||||
double ScCellIterator::getValue()
|
|
||||||
{
|
|
||||||
return maCurCell.getValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
ScCellValue ScCellIterator::getCellValue() const
|
ScCellValue ScCellIterator::getCellValue() const
|
||||||
{
|
{
|
||||||
ScCellValue aRet;
|
ScCellValue aRet;
|
||||||
@@ -1001,11 +996,6 @@ bool ScCellIterator::hasString() const
|
|||||||
return maCurCell.hasString();
|
return maCurCell.hasString();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ScCellIterator::hasNumeric() const
|
|
||||||
{
|
|
||||||
return maCurCell.hasNumeric();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ScCellIterator::hasEmptyData() const
|
bool ScCellIterator::hasEmptyData() const
|
||||||
{
|
{
|
||||||
if (maCurCell.isEmpty())
|
if (maCurCell.isEmpty())
|
||||||
|
@@ -59,8 +59,6 @@ Resource::TestRes()
|
|||||||
Ruler::GetPageWidth() const
|
Ruler::GetPageWidth() const
|
||||||
SalDisplay::PrintInfo() const
|
SalDisplay::PrintInfo() const
|
||||||
SalGraphics::drawTransformedBitmap(basegfx::B2DPoint const&, basegfx::B2DPoint const&, basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*)
|
SalGraphics::drawTransformedBitmap(basegfx::B2DPoint const&, basegfx::B2DPoint const&, basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*)
|
||||||
ScCellIterator::getValue()
|
|
||||||
ScCellIterator::hasNumeric() const
|
|
||||||
ScDocument::CreateFormatTable() const
|
ScDocument::CreateFormatTable() const
|
||||||
ScExtIButton::GetSelected() const
|
ScExtIButton::GetSelected() const
|
||||||
ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent()
|
ScVbaFormat<ooo::vba::excel::XStyle>::getAddIndent()
|
||||||
|
Reference in New Issue
Block a user