summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/viewfun2.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-07-08 22:02:48 +0200
committerEike Rathke <erack@redhat.com>2015-07-08 22:21:08 +0200
commit5ee9e2983a4b0f3df31e7f8ea4695c2c789edc56 (patch)
tree52fa748b1811f3db90a5233ca0e82f80f102f361 /sc/source/ui/view/viewfun2.cxx
parentb4317a01a72b2e0944311e6ad407cdf2ac0b1f1a (diff)
remove ScRange::Justify() and replace calls with PutInOrder()
Change-Id: I350050ac085b1f220d5288d33c253ba0c9a5fd2c
Diffstat (limited to 'sc/source/ui/view/viewfun2.cxx')
-rw-r--r--sc/source/ui/view/viewfun2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/viewfun2.cxx b/sc/source/ui/view/viewfun2.cxx
index 991995636e5d..ce0457a47791 100644
--- a/sc/source/ui/view/viewfun2.cxx
+++ b/sc/source/ui/view/viewfun2.cxx
@@ -1503,7 +1503,7 @@ void ScViewFunc::FillCrossDblClick()
{
ScRange aRange;
GetViewData().GetSimpleArea( aRange );
- aRange.Justify();
+ aRange.PutInOrder();
SCTAB nTab = GetViewData().GetCurPos().Tab();
SCCOL nStartX = aRange.aStart.Col();
@@ -1563,7 +1563,7 @@ void ScViewFunc::ConvertFormulaToValue()
{
ScRange aRange;
GetViewData().GetSimpleArea(aRange);
- aRange.Justify();
+ aRange.PutInOrder();
ScDocShell* pDocSh = GetViewData().GetDocShell();
pDocSh->GetDocFunc().ConvertFormulaToValue(aRange, true, true);