summaryrefslogtreecommitdiff
path: root/sc/source/ui/undo/undoblk.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-05-16 18:23:32 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-05-16 18:23:32 +0200
commit7f2d6d8480f06434a1b5bc748ac2f3f80b2e71cb (patch)
treee0bf410f69575d59e58459086cd7980590d72522 /sc/source/ui/undo/undoblk.cxx
parent189c3a098e0ee5b64e2ab40c3980a2a654315468 (diff)
Revert "lok: sc: invalidate col/row header on undo row/col operations"
This reverts commit 76d47e6f63e11d3509339ade6203757d63582d21, breaks the build.
Diffstat (limited to 'sc/source/ui/undo/undoblk.cxx')
-rw-r--r--sc/source/ui/undo/undoblk.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/sc/source/ui/undo/undoblk.cxx b/sc/source/ui/undo/undoblk.cxx
index 1c2757c40897..291151d11a6d 100644
--- a/sc/source/ui/undo/undoblk.cxx
+++ b/sc/source/ui/undo/undoblk.cxx
@@ -23,8 +23,6 @@
#include <editeng/boxitem.hxx>
#include <editeng/justifyitem.hxx>
#include <sfx2/app.hxx>
-#include <comphelper/lok.hxx>
-#include <sfx2/lokhelper.hxx>
#include "undoblk.hxx"
#include "undoutil.hxx"
@@ -259,19 +257,7 @@ void ScUndoInsertCells::DoChange( const bool bUndo )
}
pDocShell->PostDataChanged();
if (pViewShell)
- {
pViewShell->CellContentChanged();
-
- if (comphelper::LibreOfficeKit::isActive())
- {
- if (eCmd == INS_INSCOLS_BEFORE || eCmd == INS_INSCOLS_AFTER || eCmd == INS_CELLSRIGHT)
- ScTabViewShell::notifyAllViewsHeaderInvalidation("column", pViewShell->GetViewData().GetTabNo());
-
- if (eCmd == INS_INSROWS_BEFORE || eCmd == INS_INSROWS_AFTER || eCmd == INS_CELLSDOWN)
- ScTabViewShell::notifyAllViewsHeaderInvalidation("row", pViewShell->GetViewData().GetTabNo());
- }
-
- }
}
void ScUndoInsertCells::Undo()