Kaydet (Commit) 3d2ee524 authored tarafından Eike Rathke's avatar Eike Rathke

remove now unused BROADCAST_ALL_POSITIONS case

Change-Id: I4e6b362f31d93964567fe9ca394cd96568981746
üst f882be56
...@@ -172,7 +172,6 @@ public: ...@@ -172,7 +172,6 @@ public:
{ {
BROADCAST_NONE, ///< no broadcasting BROADCAST_NONE, ///< no broadcasting
BROADCAST_DATA_POSITIONS, ///< broadcast existing cells with position => does AreaBroadcast 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! BROADCAST_BROADCASTERS ///< broadcast only existing cell broadcasters => no AreaBroadcast of range!
}; };
......
...@@ -3109,19 +3109,6 @@ void ScColumn::SetDirty( SCROW nRow1, SCROW nRow2, BroadcastMode eMode ) ...@@ -3109,19 +3109,6 @@ void ScColumn::SetDirty( SCROW nRow1, SCROW nRow2, BroadcastMode eMode )
aHdl.broadcast(); aHdl.broadcast();
} }
break; 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: case BROADCAST_BROADCASTERS:
{ {
// Handler only used with formula cells. // Handler only used with formula cells.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment