diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-05-28 11:58:03 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-05-28 11:58:03 +0000 |
commit | 91f4d8c04ca331ea762ad504716655db6aad50bf (patch) | |
tree | 16ef95d81a7a7004013ff13137ab02bf9e838ef7 /ucbhelper/inc | |
parent | 751547a49258a15d09a5ee81dfb06944c5ad71fa (diff) |
#87187# - dtors of InteractionRequest and InteractionContinuation are now protected.
Diffstat (limited to 'ucbhelper/inc')
-rw-r--r-- | ucbhelper/inc/ucbhelper/interactionrequest.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/inc/ucbhelper/interactionrequest.hxx b/ucbhelper/inc/ucbhelper/interactionrequest.hxx index 62b0160f8b66..35ab7b10e63d 100644 --- a/ucbhelper/inc/ucbhelper/interactionrequest.hxx +++ b/ucbhelper/inc/ucbhelper/interactionrequest.hxx @@ -2,9 +2,9 @@ * * $RCSfile: interactionrequest.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kso $ $Date: 2001-05-28 12:42:26 $ + * last change: $Author: kso $ $Date: 2001-05-28 12:58:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -124,6 +124,7 @@ protected: rContinuations ); InteractionRequest(); + virtual ~InteractionRequest(); public: /** @@ -132,7 +133,6 @@ public: * @param rRequest is the exception describing the error. */ InteractionRequest( const com::sun::star::uno::Any & rRequest ); - virtual ~InteractionRequest(); // XInterface virtual com::sun::star::uno::Any SAL_CALL @@ -209,10 +209,10 @@ protected: * method the way that they call this method. */ void recordSelection(); + virtual ~InteractionContinuation(); public: InteractionContinuation( InteractionRequest * pRequest ); - virtual ~InteractionContinuation(); }; //============================================================================ |