diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-06-11 05:52:57 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-06-11 05:52:57 +0000 |
commit | 522f55f3b2892c85d12b4f7bfee5130ebb638852 (patch) | |
tree | 75b6c6a4001fd36c3bb1e701f592fcc83125a2f1 /ucbhelper/source/provider | |
parent | 4cb27f3aa31c9fa0c2946d26969b48e973ba1337 (diff) |
#87187# - Removed "approve" continuation from interaction request.
Diffstat (limited to 'ucbhelper/source/provider')
-rw-r--r-- | ucbhelper/source/provider/cancelcommandexecution.cxx | 8 | ||||
-rw-r--r-- | ucbhelper/source/provider/simpleioerrorrequest.cxx | 9 |
2 files changed, 7 insertions, 10 deletions
diff --git a/ucbhelper/source/provider/cancelcommandexecution.cxx b/ucbhelper/source/provider/cancelcommandexecution.cxx index 02ce21b800e8..75cf64260967 100644 --- a/ucbhelper/source/provider/cancelcommandexecution.cxx +++ b/ucbhelper/source/provider/cancelcommandexecution.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cancelcommandexecution.cxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: kso $ $Date: 2001-06-06 11:20:24 $ + * last change: $Author: kso $ $Date: 2001-06-11 06:52:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -108,10 +108,8 @@ void cancelCommandExecution( const uno::Any & rException, = new ucbhelper::InteractionRequest( rException ); uno::Sequence< uno::Reference< task::XInteractionContinuation > > - aContinuations( 2 ); + aContinuations( 1 ); aContinuations[ 0 ] - = new ucbhelper::InteractionApprove( xRequest.get() ); - aContinuations[ 1 ] = new ucbhelper::InteractionAbort( xRequest.get() ); xRequest->setContinuations( aContinuations ); diff --git a/ucbhelper/source/provider/simpleioerrorrequest.cxx b/ucbhelper/source/provider/simpleioerrorrequest.cxx index 85d9e036b7ce..7730eb0bd716 100644 --- a/ucbhelper/source/provider/simpleioerrorrequest.cxx +++ b/ucbhelper/source/provider/simpleioerrorrequest.cxx @@ -2,9 +2,9 @@ * * $RCSfile: simpleioerrorrequest.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kso $ $Date: 2001-06-06 11:21:42 $ + * last change: $Author: kso $ $Date: 2001-06-11 06:52:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -86,9 +86,8 @@ SimpleIOErrorRequest::SimpleIOErrorRequest( // Fill continuations... uno::Sequence< uno::Reference< - task::XInteractionContinuation > > aContinuations( 2 ); - aContinuations[ 0 ] = new InteractionApprove( this ); - aContinuations[ 1 ] = new InteractionAbort( this ); + task::XInteractionContinuation > > aContinuations( 1 ); + aContinuations[ 0 ] = new InteractionAbort( this ); setContinuations( aContinuations ); } |