summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/simpleioerrorrequest.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/simpleioerrorrequest.cxx
parent9ffcd1822e6d971f1407f62d61412633f4b9422b (diff)
#87187# - Parameter's type changed from XContentIdentifier -> XCommandProcessor.
Diffstat (limited to 'ucbhelper/source/provider/simpleioerrorrequest.cxx')
-rw-r--r--ucbhelper/source/provider/simpleioerrorrequest.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/ucbhelper/source/provider/simpleioerrorrequest.cxx b/ucbhelper/source/provider/simpleioerrorrequest.cxx
index 618fd0483ab4..fa9c797ebeaa 100644
--- a/ucbhelper/source/provider/simpleioerrorrequest.cxx
+++ b/ucbhelper/source/provider/simpleioerrorrequest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: simpleioerrorrequest.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * 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
@@ -72,13 +72,13 @@ using namespace ucbhelper;
//=========================================================================
SimpleIOErrorRequest::SimpleIOErrorRequest(
- const uno::Reference< ucb::XContentIdentifier > & xId,
- const com::sun::star::ucb::IOErrorCode eError )
+ const uno::Reference< ucb::XCommandProcessor > & xContext,
+ const com::sun::star::ucb::IOErrorCode eError )
{
// Fill request...
ucb::InteractiveIOException aRequest;
// aRequest.Message = // OUString
- aRequest.Context = xId;
+ aRequest.Context = xContext;
aRequest.Classification = task::InteractionClassification_ERROR;
aRequest.Code = eError;