summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/cancelcommandexecution.cxx
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-06-18 08:20:36 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-06-18 08:20:36 +0000
commit870899c554c643b07c29fc6def88c04605818ceb (patch)
treeb54208139efaf0e21fec868ff6acf75f7c994495 /ucbhelper/source/provider/cancelcommandexecution.cxx
parent9ffcd1822e6d971f1407f62d61412633f4b9422b (diff)
#87187# - Parameter's type changed from XContentIdentifier -> XCommandProcessor.
Diffstat (limited to 'ucbhelper/source/provider/cancelcommandexecution.cxx')
-rw-r--r--ucbhelper/source/provider/cancelcommandexecution.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/provider/cancelcommandexecution.cxx b/ucbhelper/source/provider/cancelcommandexecution.cxx
index ef204df8fe6a..e6ca7477181e 100644
--- a/ucbhelper/source/provider/cancelcommandexecution.cxx
+++ b/ucbhelper/source/provider/cancelcommandexecution.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cancelcommandexecution.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kso $ $Date: 2001-06-15 08:48:49 $
+ * last change: $Author: kso $ $Date: 2001-06-18 09:20:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -135,14 +135,14 @@ void cancelCommandExecution( const uno::Any & rException,
//=========================================================================
void cancelCommandExecution( const uno::Reference<
- ucb::XContentIdentifier > & xId,
+ ucb::XCommandProcessor > & xContext,
const ucb::IOErrorCode eError,
const uno::Reference<
ucb::XCommandEnvironment > & xEnv )
throw( uno::Exception )
{
rtl::Reference< ucbhelper::SimpleIOErrorRequest > xRequest
- = new ucbhelper::SimpleIOErrorRequest( xId, eError );
+ = new ucbhelper::SimpleIOErrorRequest( xContext, eError );
if ( xEnv.is() )
{
@@ -158,7 +158,7 @@ void cancelCommandExecution( const uno::Reference<
if ( xSelection.is() )
throw ucb::CommandFailedException(
rtl::OUString(),
- xId,
+ xContext,
xRequest->getRequest() );
}
}