summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/simpleioerrorrequest.cxx
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-06-19 08:18:27 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-06-19 08:18:27 +0000
commitc864daa20063f9d2d7ff79a72d1fcb78decf2c19 (patch)
tree5d595a46baea995e2061e4c61915d6255e0c77f9 /ucbhelper/source/provider/simpleioerrorrequest.cxx
parentdb1953f5b0f7cb6cee338f5709b844b3276e107b (diff)
#87187# - Yet another change of method/ctor arguments.
Diffstat (limited to 'ucbhelper/source/provider/simpleioerrorrequest.cxx')
-rw-r--r--ucbhelper/source/provider/simpleioerrorrequest.cxx19
1 files changed, 11 insertions, 8 deletions
diff --git a/ucbhelper/source/provider/simpleioerrorrequest.cxx b/ucbhelper/source/provider/simpleioerrorrequest.cxx
index fa9c797ebeaa..5b8ee0efaeee 100644
--- a/ucbhelper/source/provider/simpleioerrorrequest.cxx
+++ b/ucbhelper/source/provider/simpleioerrorrequest.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: simpleioerrorrequest.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: kso $ $Date: 2001-06-18 09:20:36 $
+ * last change: $Author: kso $ $Date: 2001-06-19 09:18:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,8 +59,8 @@
*
************************************************************************/
-#ifndef _COM_SUN_STAR_UCB_INTERACTIVEIOEXCEPTION_HPP_
-#include <com/sun/star/ucb/InteractiveIOException.hpp>
+#ifndef _COM_SUN_STAR_UCB_INTERACTIVEAUGMENTEDIOEXCEPTION_HPP_
+#include <com/sun/star/ucb/InteractiveAugmentedIOException.hpp>
#endif
#ifndef _UCBHELPER_SIMPLEIOERRORREQUEST_HXX
@@ -72,15 +72,18 @@ using namespace ucbhelper;
//=========================================================================
SimpleIOErrorRequest::SimpleIOErrorRequest(
- const uno::Reference< ucb::XCommandProcessor > & xContext,
- const com::sun::star::ucb::IOErrorCode eError )
+ const ucb::IOErrorCode eError,
+ const uno::Sequence< uno::Any > & rArgs,
+ const rtl::OUString & rMessage,
+ const uno::Reference< ucb::XCommandProcessor > & xContext )
{
// Fill request...
- ucb::InteractiveIOException aRequest;
-// aRequest.Message = // OUString
+ ucb::InteractiveAugmentedIOException aRequest;
+ aRequest.Message = rMessage;
aRequest.Context = xContext;
aRequest.Classification = task::InteractionClassification_ERROR;
aRequest.Code = eError;
+ aRequest.Arguments = rArgs;
setRequest( uno::makeAny( aRequest ) );