summaryrefslogtreecommitdiff
path: root/sc/source/ui/undo/undosort.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/undosort.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/undosort.cxx')
-rw-r--r--sc/source/ui/undo/undosort.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/undo/undosort.cxx b/sc/source/ui/undo/undosort.cxx
index a4bd1af1c302..c30cd5620106 100644
--- a/sc/source/ui/undo/undosort.cxx
+++ b/sc/source/ui/undo/undosort.cxx
@@ -46,7 +46,7 @@ void UndoSort::Execute( bool bUndo )
ScUndoUtil::MarkSimpleBlock(pDocShell, maParam.maSortRange);
- rDoc.SetDirty(maParam.maSortRange);
+ rDoc.SetDirty(maParam.maSortRange, true);
if (!aParam.mbUpdateRefs)
rDoc.BroadcastCells(aParam.maSortRange, SC_HINT_DATACHANGED);