diff options
author | Eike Rathke <erack@redhat.com> | 2014-12-09 17:11:22 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-12-09 17:12:56 +0100 |
commit | 3d2ee524942c063ee13645723bb60db35255e350 (patch) | |
tree | 9426891ab33495c7fa1ba70828089ca497f5ff50 | |
parent | f882be560930600a2f8734b8e08e4b81e5014c17 (diff) |
remove now unused BROADCAST_ALL_POSITIONS case
Change-Id: I4e6b362f31d93964567fe9ca394cd96568981746
-rw-r--r-- | sc/inc/column.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 13 |
2 files changed, 0 insertions, 14 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index bef0d0511780..1d7078f526a4 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -172,7 +172,6 @@ public: { BROADCAST_NONE, ///< no broadcasting BROADCAST_DATA_POSITIONS, ///< broadcast existing cells with position => does AreaBroadcast - BROADCAST_ALL_POSITIONS, ///< broadcast all cells, including empty, with position => does AreaBroadcast BROADCAST_BROADCASTERS ///< broadcast only existing cell broadcasters => no AreaBroadcast of range! }; diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 77c51eaf38eb..e5b67f82ebfc 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -3109,19 +3109,6 @@ void ScColumn::SetDirty( SCROW nRow1, SCROW nRow2, BroadcastMode eMode ) aHdl.broadcast(); } break; - case BROADCAST_ALL_POSITIONS: - { - // Handler only used with formula cells. - SetDirtyOnRangeHandler aHdl(*this); - sc::ProcessFormula(maCells.begin(), maCells, nRow1, nRow2, aHdl); - ScHint aHint( SC_HINT_DATACHANGED, ScAddress( nCol, 0, nTab)); - for (SCROW nRow = nRow1; nRow <= nRow2; ++nRow) - { - aHint.GetAddress().SetRow(nRow); - pDocument->Broadcast(aHint); - } - } - break; case BROADCAST_BROADCASTERS: { // Handler only used with formula cells. |