summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 10:07:17 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 10:27:28 +0200
commit457304666358d172dfcc9ad13b235f19bfbe2d29 (patch)
tree7240874c83230e5bb9be76b8ddf7c5b58794d765 /sc
parent1c5797b16669afb6f0cd065f4c37c852c5136f60 (diff)
remove unused code ScTable::SetRawString(short, int, rtl::OUString const&)
Change-Id: I098143e76c141e4cf6b9d9aec4cb727680ea7457
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/table.hxx1
-rw-r--r--sc/source/core/data/table2.cxx6
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 3f75563a83d4..a605edf71b25 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -355,7 +355,6 @@ public:
SCSIZE GetPatternCount( SCCOL nCol, SCROW nRow1, SCROW nRow2 ) const;
bool ReservePatternCount( SCCOL nCol, SCSIZE nReserve );
- void SetRawString( SCCOL nCol, SCROW nRow, const OUString& rStr );
void SetRawString( SCCOL nCol, SCROW nRow, const svl::SharedString& rStr );
void GetString( SCCOL nCol, SCROW nRow, OUString& rString ) const;
double* GetValueCell( SCCOL nCol, SCROW nRow );
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 5ac15daae44b..28588af2fc4e 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -1424,12 +1424,6 @@ void ScTable::SetValue( SCCOL nCol, SCROW nRow, const double& rVal )
aCol[nCol].SetValue( nRow, rVal );
}
-void ScTable::SetRawString( SCCOL nCol, SCROW nRow, const OUString& rStr )
-{
- if (ValidColRow(nCol, nRow))
- aCol[nCol].SetRawString(nRow, rStr);
-}
-
void ScTable::SetRawString( SCCOL nCol, SCROW nRow, const svl::SharedString& rStr )
{
if (ValidColRow(nCol, nRow))