diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-08 04:17:53 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-01-08 04:19:12 +0100 |
commit | aeddbade5428ae4794faea79c376f6c8c0e9112f (patch) | |
tree | 4edd92ac06bf0dce9cc0573ea762e50da896d708 /sc | |
parent | baed170c416fd5bcae4d17362f0efd0e6284efdc (diff) |
don't set document modified for copy and select all, fdo#44423
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/editsh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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: { |