From aeddbade5428ae4794faea79c376f6c8c0e9112f Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 8 Jan 2012 04:17:53 +0100 Subject: don't set document modified for copy and select all, fdo#44423 --- sc/source/ui/view/editsh.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc') diff --git a/sc/source/ui/view/editsh.cxx b/sc/source/ui/view/editsh.cxx index 7e7cea0fbc00..c843e96c2cab 100644 --- a/sc/source/ui/view/editsh.cxx +++ b/sc/source/ui/view/editsh.cxx @@ -233,7 +233,7 @@ void ScEditShell::Execute( SfxRequest& rReq ) case SID_COPY: pTableView->Copy(); - break; + return; case SID_CUT: pTableView->Cut(); @@ -334,7 +334,7 @@ void ScEditShell::Execute( SfxRequest& rReq ) pTopView->SetSelection(ESelection(0,0,nPar-1,nLen)); } } - break; + return; case SID_CHARMAP: { -- cgit