summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorFerran Vidal <vidalmarginet@hotmail.com>2012-04-21 18:08:11 +0200
committerCaolán McNamara <caolanm@redhat.com>2012-04-21 20:34:28 +0100
commitdd2230c90ff41b667bf0d750801eb0d2ab3b0317 (patch)
tree6a7c342f989f925e21ff3310aed6537ae4b46319 /sc
parent9fda7a919f31a192b9bd2938139b6566b7fc2935 (diff)
Remove unused code from "Spreadsheet application code"
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/cell.hxx1
-rw-r--r--sc/source/core/data/cell.cxx5
2 files changed, 0 insertions, 6 deletions
diff --git a/sc/inc/cell.hxx b/sc/inc/cell.hxx
index 08fbdfadb26f..b4549d1f2483 100644
--- a/sc/inc/cell.hxx
+++ b/sc/inc/cell.hxx
@@ -207,7 +207,6 @@ public:
DECL_FIXEDMEMPOOL_NEWDEL( ScStringCell )
#endif
- ScStringCell();
explicit ScStringCell(const rtl::OUString& rString);
#if OSL_DEBUG_LEVEL > 0
diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx
index 9ccaddedf2cd..a4e536191ed8 100644
--- a/sc/source/core/data/cell.cxx
+++ b/sc/source/core/data/cell.cxx
@@ -657,11 +657,6 @@ ScValueCell::~ScValueCell()
// ============================================================================
-ScStringCell::ScStringCell() :
- ScBaseCell( CELLTYPE_STRING )
-{
-}
-
ScStringCell::ScStringCell( const rtl::OUString& rString ) :
ScBaseCell( CELLTYPE_STRING ),
maString( rString.intern() )