summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-09-18 09:00:29 +0200
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-09-18 09:59:57 -0400
commitdb2a4f4032db854a2a028d4ed136cfd4c63ae082 (patch)
treee0a813644d2425f6a3995ce8c0e697f1e6137c27
parente6158f4fa2890d2f7bb3cc12dc3ce8e20d8511c3 (diff)
broadcaster cells are empty, fdo#54553
Change-Id: Ie7c251b7eaee248c97f4f931175bc26539acb22a Signed-off-by: Kohei Yoshida <kohei.yoshida@gmail.com>
-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 2a3d80717248..b6f40ca25ca3 100644
--- a/sc/source/core/data/cell.cxx
+++ b/sc/source/core/data/cell.cxx
@@ -267,6 +267,9 @@ void ScBaseCell::Delete()
bool ScBaseCell::IsBlank() const
{
+ if(eCellType == CELLTYPE_NOTE)
+ return true;
+
return false;
}