diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-09-18 12:33:10 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-09-18 12:41:26 +0200 |
commit | 2bd0be819d63588ff0ce6161005d26d313253f74 (patch) | |
tree | 9d20ded5204d0e2da3aa04dd00cdea55fb41f117 /sw | |
parent | d86a72b64f208fe55f302d9fd8a7f578a4275bb8 (diff) |
SwEditShell::_CopySelToDoc(): this copes "to" the doc, not "and" the doc
Change-Id: I9d9368c72b6dbaac4f2205ad426449553b7f6ca6
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/editsh.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/edit/edglss.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index fc5a6c1e41d0..a8d0d727d3ab 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -212,7 +212,7 @@ public: /** For copying via ClipBoard: If table is copied into table, move all cursors away from it. Copy and Paste must be in FEShell because of FlyFrames! - Copy all selections and the document. */ + Copy all selections to the document. */ sal_Bool _CopySelToDoc( SwDoc* pInsDoc, SwNodeIndex* pNdInsPos = 0 ); long SplitNode( sal_Bool bAutoFormat = sal_False, sal_Bool bCheckTableStart = sal_True ); diff --git a/sw/source/core/edit/edglss.cxx b/sw/source/core/edit/edglss.cxx index 873cacbc75b7..554583cfd22a 100644 --- a/sw/source/core/edit/edglss.cxx +++ b/sw/source/core/edit/edglss.cxx @@ -152,7 +152,7 @@ sal_uInt16 SwEditShell::SaveGlossaryDoc( SwTextBlocks& rBlock, return nRet; } -/// copy all selections and the doc +/// copy all selections to the doc sal_Bool SwEditShell::_CopySelToDoc( SwDoc* pInsDoc, SwNodeIndex* pSttNd ) { OSL_ENSURE( pInsDoc, "no Ins.Document" ); |