diff options
author | jp <jp@openoffice.org> | 2001-09-07 10:26:22 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2001-09-07 10:26:22 +0000 |
commit | 57c36e1e1052b1059d4f1566259c72ebb559496d (patch) | |
tree | c94ca025ee840d12672200bc2202a2c79e8c7623 /sw/source/ui/shells/basesh.cxx | |
parent | 029bd5b1a5bba8ba1ed61611249a11c93be1211a (diff) |
Bug #85259#: use GetXTranferable instead of GetTransferable
Diffstat (limited to 'sw/source/ui/shells/basesh.cxx')
-rw-r--r-- | sw/source/ui/shells/basesh.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/shells/basesh.cxx b/sw/source/ui/shells/basesh.cxx index 255d243d8c..d396b1a9fb 100644 --- a/sw/source/ui/shells/basesh.cxx +++ b/sw/source/ui/shells/basesh.cxx @@ -2,9 +2,9 @@ * * $RCSfile: basesh.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: jp $ $Date: 2001-08-21 10:27:01 $ + * last change: $Author: jp $ $Date: 2001-09-07 11:26:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -493,7 +493,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest &rReq) TransferableDataHelper::CreateFromSystemClipboard( &rSh.GetView().GetEditWin() ) ); - if( aDataHelper.GetTransferable().is() && + if( aDataHelper.GetXTransferable().is() && SwTransferable::IsPaste( rSh, aDataHelper )) { // temp. Variablen, da die Shell nach dem Paste schon @@ -519,7 +519,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest &rReq) TransferableDataHelper aDataHelper( TransferableDataHelper::CreateFromSystemClipboard( &rSh.GetView().GetEditWin()) ); - if( aDataHelper.GetTransferable().is() + if( aDataHelper.GetXTransferable().is() /*&& SwTransferable::IsPaste( rSh, aDataHelper )*/ ) { // temp. Variablen, da die Shell nach dem Paste schon @@ -542,7 +542,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest &rReq) TransferableDataHelper aDataHelper( TransferableDataHelper::CreateFromSystemClipboard( &rSh.GetView().GetEditWin()) ); - if( aDataHelper.GetTransferable().is() && + if( aDataHelper.GetXTransferable().is() && SwTransferable::IsPaste( rSh, aDataHelper )) { // temp. Variablen, da die Shell nach dem Paste schon |