summaryrefslogtreecommitdiff
path: root/sc/source/ui/undo/undodat.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-12-03 17:47:35 +0100
committerEike Rathke <erack@redhat.com>2014-12-03 17:49:57 +0100
commit135b8d6466ade1e8724e604f705f95cecf4c4881 (patch)
tree8d3ddb281491c300a206e5554d94255bd116bacc /sc/source/ui/undo/undodat.cxx
parent37cc33e27188a5686e15751c5bb39b422909f201 (diff)
remove boolean parameter default from ScDocument::SetDirty
... and force the caller to make a decision. In fact some needed to include empty cells. Change-Id: I82b6ef72f7ecda6543b3cafc70f475519870b471
Diffstat (limited to 'sc/source/ui/undo/undodat.cxx')
-rw-r--r--sc/source/ui/undo/undodat.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/undo/undodat.cxx b/sc/source/ui/undo/undodat.cxx
index ddd57d1e37e0..980fd7b878a4 100644
--- a/sc/source/ui/undo/undodat.cxx
+++ b/sc/source/ui/undo/undodat.cxx
@@ -845,7 +845,7 @@ void ScUndoQuery::Undo()
ScRange aDirtyRange( 0 , aQueryParam.nRow1, nTab,
MAXCOL, aQueryParam.nRow2, nTab );
- rDoc.SetDirty( aDirtyRange );
+ rDoc.SetDirty( aDirtyRange, true );
DoSdrUndoAction( pDrawUndo, &rDoc );