diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-12-20 22:43:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-12-21 09:30:19 +0000 |
commit | 60bfcc0a4af860f21a840ce47585ff9395cf28e6 (patch) | |
tree | 47e8dfeaa380949383fb72f8d77fd69a905f6386 /sw | |
parent | 80c7dd48a0b11e6c3009ac03283cec550785b9c5 (diff) |
callcatcher: SfxRequest::IsRecording unused for a long time
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/shells/basesh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/shells/basesh.cxx b/sw/source/ui/shells/basesh.cxx index b2e23d880517..d793595fc79d 100644 --- a/sw/source/ui/shells/basesh.cxx +++ b/sw/source/ui/shells/basesh.cxx @@ -344,7 +344,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest &rReq) rReq.Ignore(); bIgnore = sal_True; int nRet = SwTransferable::PasteUnformatted( rSh, aDataHelper ); - if(nRet)// && rReq.IsRecording() ) + if(nRet) { SfxViewFrame* pViewFrame = pView->GetViewFrame(); uno::Reference< frame::XDispatchRecorder > xRecorder = @@ -380,7 +380,7 @@ void SwBaseShell::ExecClpbrd(SfxRequest &rReq) rReq.Ignore(); bIgnore = sal_True; int nRet = SwTransferable::PasteSpecial( rSh, aDataHelper, nFormatId ); - if(nRet)// && rReq.IsRecording() ) + if(nRet) { SfxViewFrame* pViewFrame = pView->GetViewFrame(); uno::Reference< frame::XDispatchRecorder > xRecorder = |