diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-09-18 09:00:29 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-09-21 15:06:33 +0200 |
commit | 774d204051a898cd399bca12d4d52d784c61dc5f (patch) | |
tree | 871b5ac41cca247f0d6534888b461a746a1ccef5 | |
parent | 04e34c9876c25be047c1b26c489d4185bacc54b5 (diff) |
broadcaster cells are empty, fdo#54553
Change-Id: Ie7c251b7eaee248c97f4f931175bc26539acb22a
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
-rw-r--r-- | sc/source/core/data/cell.cxx | 3 |
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; } |