summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/view/tabvwsh3.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/tabvwsh3.cxx
parentreplace implementation of ScRange::PutInOrder() with that of Justify() (diff)
downloadcore-5ee9e2983a4b0f3df31e7f8ea4695c2c789edc56.tar.gz
core-5ee9e2983a4b0f3df31e7f8ea4695c2c789edc56.zip
remove ScRange::Justify() and replace calls with PutInOrder()
Change-Id: I350050ac085b1f220d5288d33c253ba0c9a5fd2c
Diffstat (limited to 'sc/source/ui/view/tabvwsh3.cxx')
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 8fdce4451234..f0fc87f34a63 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -360,9 +360,9 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
{
ScRange aOldMark;
rMark.GetMarkArea( aOldMark );
- aOldMark.Justify();
+ aOldMark.PutInOrder();
ScRange aCurrent = aScRange;
- aCurrent.Justify();
+ aCurrent.PutInOrder();
bNothing = ( aCurrent == aOldMark );
}
else