summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-10-17 12:28:27 +0200
committerDavid Tardon <dtardon@redhat.com>2012-10-19 10:20:27 +0200
commit637096b75f2989640967e72aee41e48b07a5a602 (patch)
treecf50127f2cfdc7926a38df5e224003d91d8a14d0
parent7a0949b101e4ea70984e714065c94854fa071fd6 (diff)
ignore broadcaster cells to fill autofilter dialog, fdo#55712
Change-Id: Iacd3f8cfc26bb147eaf3b6957338be212b448226 (cherry picked from commit 622f7751b78fd8584e34f5fa96a04ed6e8bb98f5) Signed-off-by: David Tardon <dtardon@redhat.com>
-rw-r--r--sc/source/core/data/column3.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 48d77dc6f5fc..475299da6293 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1501,6 +1501,10 @@ void ScColumn::GetFilterEntries(SCROW nStartRow, SCROW nEndRow, std::vector<ScTy
}
break;
+ // skip broadcaster cells
+ case CELLTYPE_NOTE:
+ continue;
+
default:
;
}