diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-28 16:02:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-03 08:59:01 +0200 |
commit | f7d6dde5563e5ccd9bd3490e6e25cbdf51a10105 (patch) | |
tree | 315e2796d7adb88b0e0033f5c13c4d1a722bf6b3 /sc | |
parent | bdfb4f8a3e204b9fe1fe29dbc670dc100da5019e (diff) |
remove unused code in sc::CellTextAttr
sc::CellTextAttr::CellTextAttr(unsigned short, unsigned char)
Change-Id: I39f893714866f69b7928cee980cb1505c9b2be06
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/mtvelements.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/mtvelements.cxx | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/sc/inc/mtvelements.hxx b/sc/inc/mtvelements.hxx index 3eb5527b8eaf..1e08c1241e2b 100644 --- a/sc/inc/mtvelements.hxx +++ b/sc/inc/mtvelements.hxx @@ -45,7 +45,6 @@ struct CellTextAttr CellTextAttr(); CellTextAttr(const CellTextAttr& r); - CellTextAttr(sal_uInt16 nTextWidth, sal_uInt8 nScriptType); }; /// Custom element type IDs for multi_type_vector. diff --git a/sc/source/core/data/mtvelements.cxx b/sc/source/core/data/mtvelements.cxx index 1110ab6d2a04..3a74b8ab4e37 100644 --- a/sc/source/core/data/mtvelements.cxx +++ b/sc/source/core/data/mtvelements.cxx @@ -22,10 +22,6 @@ CellTextAttr::CellTextAttr(const CellTextAttr& r) : mnTextWidth(r.mnTextWidth), mnScriptType(r.mnScriptType) {} -CellTextAttr::CellTextAttr(sal_uInt16 nTextWidth, sal_uInt8 nScriptType) : - mnTextWidth(nTextWidth), - mnScriptType(nScriptType) {} - ColumnBlockPositionSet::ColumnBlockPositionSet(ScDocument& rDoc) : mrDoc(rDoc) {} ColumnBlockPosition* ColumnBlockPositionSet::getBlockPosition(SCTAB nTab, SCCOL nCol) |