summaryrefslogtreecommitdiff
path: root/ucbhelper/inc/ucbhelper
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-05-28 11:42:46 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-05-28 11:42:46 +0000
commit751547a49258a15d09a5ee81dfb06944c5ad71fa (patch)
tree09c17c9948a6d5c41ea6ff44390f07e70feeff0d /ucbhelper/inc/ucbhelper
parentce509cd0043c1919b6c68d15e23abfdadffcb95f (diff)
#87187# - Use rtl::Reference instead of obsolete vos::ORef
Diffstat (limited to 'ucbhelper/inc/ucbhelper')
-rw-r--r--ucbhelper/inc/ucbhelper/interactionrequest.hxx13
-rw-r--r--ucbhelper/inc/ucbhelper/simpleauthenticationrequest.hxx12
2 files changed, 15 insertions, 10 deletions
diff --git a/ucbhelper/inc/ucbhelper/interactionrequest.hxx b/ucbhelper/inc/ucbhelper/interactionrequest.hxx
index cacad9acaef7..62b0160f8b66 100644
--- a/ucbhelper/inc/ucbhelper/interactionrequest.hxx
+++ b/ucbhelper/inc/ucbhelper/interactionrequest.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: interactionrequest.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: kso $ $Date: 2001-05-28 10:42:33 $
+ * last change: $Author: kso $ $Date: 2001-05-28 12:42:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,8 +84,8 @@
#include <com/sun/star/ucb/XInteractionSupplyAuthentication.hpp>
#endif
-#ifndef _VOS_REF_HXX_
-#include <vos/ref.hxx>
+#ifndef _RTL_REF_HXX_
+#include <rtl/ref.hxx>
#endif
#ifndef _CPPUHELPER_WEAK_HXX_
#include <cppuhelper/weak.hxx>
@@ -168,7 +168,7 @@ public:
* @return the continuation choosen by an interaction handler or an empty
* reference, if the request was not (yet) handled.
*/
- vos::ORef< InteractionContinuation > getSelection() const;
+ rtl::Reference< InteractionContinuation > getSelection() const;
/**
* This method sets a continuation for the request. It also can be used
@@ -180,7 +180,8 @@ public:
* current selection.
*/
void
- setSelection( const vos::ORef< InteractionContinuation > & rxSelection );
+ setSelection(
+ const rtl::Reference< InteractionContinuation > & rxSelection );
};
//============================================================================
diff --git a/ucbhelper/inc/ucbhelper/simpleauthenticationrequest.hxx b/ucbhelper/inc/ucbhelper/simpleauthenticationrequest.hxx
index ce8900587e29..b2c0ccde3c8c 100644
--- a/ucbhelper/inc/ucbhelper/simpleauthenticationrequest.hxx
+++ b/ucbhelper/inc/ucbhelper/simpleauthenticationrequest.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: simpleauthenticationrequest.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: kso $ $Date: 2001-05-28 10:42:33 $
+ * last change: $Author: kso $ $Date: 2001-05-28 12:42:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,9 @@
#ifndef _UCBHELPER_SIMPLEAUTHENTICATIONREQUEST_HXX
#define _UCBHELPER_SIMPLEAUTHENTICATIONREQUEST_HXX
+#ifndef _RTL_REF_HXX_
+#include <rtl/ref.hxx>
+#endif
#ifndef _UCBHELPER_INTERATIONREQUEST_HXX
#include <ucbhelper/interactionrequest.hxx>
#endif
@@ -89,7 +92,8 @@ namespace ucbhelper {
*/
class SimpleAuthenticationRequest : public ucbhelper::InteractionRequest
{
- vos::ORef< ucbhelper::InteractionSupplyAuthentication > m_xAuthSupplier;
+ rtl::Reference<
+ ucbhelper::InteractionSupplyAuthentication > m_xAuthSupplier;
public:
/**
@@ -116,7 +120,7 @@ public:
*
* @return the supplier for the missing authentication data.
*/
- const vos::ORef< ucbhelper::InteractionSupplyAuthentication > &
+ const rtl::Reference< ucbhelper::InteractionSupplyAuthentication > &
getAuthenticationSupplier() const { return m_xAuthSupplier; }
};