diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-22 16:08:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-24 21:24:11 +0100 |
commit | 843c55d132a1889ffbdfe230a48bb6dfae7d62a3 (patch) | |
tree | 3d76676d434c89345e100962808a6eb13a13bf2a /sc | |
parent | 61d21e79e681753599b395f224ed48172e808bc4 (diff) |
remove unused sc::ListenerGroupType::Single
Change-Id: I98a279731b22f88f57ab667b6f5ef8c71b030832
Reviewed-on: https://gerrit.libreoffice.org/63945
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/types.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/bcaslot.cxx | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/sc/inc/types.hxx b/sc/inc/types.hxx index 51898c291fde..995f715c37c3 100644 --- a/sc/inc/types.hxx +++ b/sc/inc/types.hxx @@ -120,7 +120,6 @@ enum AreaOverlapType enum class ListenerGroupType { - Single, Group, Both }; diff --git a/sc/source/core/data/bcaslot.cxx b/sc/source/core/data/bcaslot.cxx index f607d20fc80e..f63e116cc083 100644 --- a/sc/source/core/data/bcaslot.cxx +++ b/sc/source/core/data/bcaslot.cxx @@ -517,10 +517,6 @@ void ScBroadcastAreaSlot::GetAllListeners( const ScRange& rAreaRange = pArea->GetRange(); switch (eGroup) { - case sc::ListenerGroupType::Single: - if (pArea->IsGroupListening()) - continue; - break; case sc::ListenerGroupType::Group: if (!pArea->IsGroupListening()) continue; |