summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-09-18 09:00:29 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-09-18 09:02:20 +0200
commit082155566a88b470da1fa197c264fff6cacc32f5 (patch)
treecb601be795cbb6a6932946e625cfb6910ae1356c
parent61f6bfca7bd55dd8a9cfdd1f966e0da53a3101b3 (diff)
broadcaster cells are empty, fdo#54553
Change-Id: Ie7c251b7eaee248c97f4f931175bc26539acb22a
-rw-r--r--sc/source/core/data/cell.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx
index 8f3a0a458728..c4ddb68c86ac 100644
--- a/sc/source/core/data/cell.cxx
+++ b/sc/source/core/data/cell.cxx
@@ -264,6 +264,9 @@ void ScBaseCell::Delete()
bool ScBaseCell::IsBlank() const
{
+ if(eCellType == CELLTYPE_NOTE)
+ return true;
+
return false;
}