summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 10:13:26 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 10:27:29 +0200
commitb28e4351057323e6ec043a872c1a1c8d09dfb1db (patch)
tree72fedbed5e31309713f87af4d335af3e6ecd9f71 /sc
parent457304666358d172dfcc9ad13b235f19bfbe2d29 (diff)
remove unused code ScTable::GetNote(short, int)
Change-Id: Iad250b204423b897d903053b3ea4c63c01837e79
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/table.hxx2
-rw-r--r--sc/source/core/data/table2.cxx5
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index a605edf71b25..9a621ab8bc58 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -384,8 +384,6 @@ public:
void GetFirstDataPos(SCCOL& rCol, SCROW& rRow) const;
void GetLastDataPos(SCCOL& rCol, SCROW& rRow) const;
- ScPostIt* GetNote(const SCCOL nCol, const SCROW nRow);
-
ScPostIt* ReleaseNote( SCCOL nCol, SCROW nRow );
size_t GetNoteCount( SCCOL nCol ) const;
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 28588af2fc4e..ab50073f018d 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -1502,11 +1502,6 @@ ScFormulaCell* ScTable::GetFormulaCell( SCCOL nCol, SCROW nRow )
return aCol[nCol].GetFormulaCell(nRow);
}
-ScPostIt* ScTable::GetNote(const SCCOL nCol, const SCROW nRow)
-{
- return pDocument->GetNote(nCol, nRow, nTab);
-}
-
ScPostIt* ScTable::ReleaseNote( SCCOL nCol, SCROW nRow )
{
if (!ValidCol(nCol))