summaryrefslogtreecommitdiff
path: root/ucbhelper/inc
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/inc
parent9ffcd1822e6d971f1407f62d61412633f4b9422b (diff)
#87187# - Parameter's type changed from XContentIdentifier -> XCommandProcessor.
Diffstat (limited to 'ucbhelper/inc')
-rw-r--r--ucbhelper/inc/ucbhelper/cancelcommandexecution.hxx12
-rw-r--r--ucbhelper/inc/ucbhelper/simpleioerrorrequest.hxx12
2 files changed, 12 insertions, 12 deletions
diff --git a/ucbhelper/inc/ucbhelper/cancelcommandexecution.hxx b/ucbhelper/inc/ucbhelper/cancelcommandexecution.hxx
index ea188cac80a1..949ae56995f5 100644
--- a/ucbhelper/inc/ucbhelper/cancelcommandexecution.hxx
+++ b/ucbhelper/inc/ucbhelper/cancelcommandexecution.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cancelcommandexecution.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kso $ $Date: 2001-06-15 08:47:28 $
+ * last change: $Author: kso $ $Date: 2001-06-18 09:19:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,7 +74,7 @@
namespace com { namespace sun { namespace star {
namespace uno { class Any; }
- namespace ucb { class XCommandEnvironment; class XContentIdentifier; }
+ namespace ucb { class XCommandEnvironment; class XCommandProcessor; }
} } }
namespace ucbhelper
@@ -114,8 +114,7 @@ void cancelCommandExecution( const com::sun::star::uno::Any & rException,
NOTE THAT THIS FUNCTION NEVER RETURNS! IT ALWAYS THROWS AN EXCEPTION!
- @param xId is the identifier of the UCB content related to the command to
- cancel.
+ @param xContext is the command processor executing the command to cancel.
@param eError is an IO error code.
@@ -123,7 +122,8 @@ void cancelCommandExecution( const com::sun::star::uno::Any & rException,
Handler to use before throwing the appropriate exception.
*/
void cancelCommandExecution( const com::sun::star::uno::Reference<
- com::sun::star::ucb::XContentIdentifier > & xId,
+ com::sun::star::ucb::XCommandProcessor > &
+ xContext,
const com::sun::star::ucb::IOErrorCode eError,
const com::sun::star::uno::Reference<
com::sun::star::ucb::XCommandEnvironment > &
diff --git a/ucbhelper/inc/ucbhelper/simpleioerrorrequest.hxx b/ucbhelper/inc/ucbhelper/simpleioerrorrequest.hxx
index 6614331cf0b2..a7fc7ae67118 100644
--- a/ucbhelper/inc/ucbhelper/simpleioerrorrequest.hxx
+++ b/ucbhelper/inc/ucbhelper/simpleioerrorrequest.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: simpleioerrorrequest.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kso $ $Date: 2001-06-15 08:47:28 $
+ * last change: $Author: kso $ $Date: 2001-06-18 09:19:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -71,7 +71,7 @@
#endif
namespace com { namespace sun { namespace star { namespace ucb {
- class XContentIdentifier;
+ class XCommandProcessor;
} } } }
namespace ucbhelper {
@@ -91,13 +91,13 @@ public:
/**
* Constructor.
*
- * @param xId contains the identifier of the UCB content related to the
- * request.
+ * @param xContext contains the command processor that executes the
+ * command related to the request.
*
* @param eError
*/
SimpleIOErrorRequest( const com::sun::star::uno::Reference<
- com::sun::star::ucb::XContentIdentifier > & xId,
+ com::sun::star::ucb::XCommandProcessor > & xContext,
const com::sun::star::ucb::IOErrorCode eError );
};