summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/simpleioerrorrequest.cxx
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-06-15 07:48:49 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-06-15 07:48:49 +0000
commitc6a59e3424b00c9568f487eaec9f0da3959910a8 (patch)
tree8fcff1d45dd99fd152583aa0be7a85715de0f78b /ucbhelper/source/provider/simpleioerrorrequest.cxx
parentd4b8bb024efdb1ef597d3fd835c8c4859c2b7b4f (diff)
#87187# - Parameter's type changed from XContent -> XContentIdentifier.
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 7730eb0bd716..618fd0483ab4 100644
--- a/ucbhelper/source/provider/simpleioerrorrequest.cxx
+++ b/ucbhelper/source/provider/simpleioerrorrequest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: simpleioerrorrequest.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kso $ $Date: 2001-06-11 06:52:57 $
+ * last change: $Author: kso $ $Date: 2001-06-15 08:48:49 $
*
* 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::XContent > & xContent,
- const com::sun::star::ucb::IOErrorCode eError )
+ const uno::Reference< ucb::XContentIdentifier > & xId,
+ const com::sun::star::ucb::IOErrorCode eError )
{
// Fill request...
ucb::InteractiveIOException aRequest;
// aRequest.Message = // OUString
- aRequest.Context = xContent;
+ aRequest.Context = xId;
aRequest.Classification = task::InteractionClassification_ERROR;
aRequest.Code = eError;