diff options
author | Andreas Schlüns <as@openoffice.org> | 2001-07-20 07:09:07 +0000 |
---|---|---|
committer | Andreas Schlüns <as@openoffice.org> | 2001-07-20 07:09:07 +0000 |
commit | f14710cb6a80bdbf70de54c331eb68dc98689d7c (patch) | |
tree | 050a2f8caa6f6a6eda1460fc50423682fe91227b /framework | |
parent | b9a289d2f93151d9c67fefd7093b5195e3daf599 (diff) |
#89783# check for right protocol;#89882# handle user info for asynchronous proccesses
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/dispatch/selfdispatcher.hxx | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/framework/inc/dispatch/selfdispatcher.hxx b/framework/inc/dispatch/selfdispatcher.hxx index 5177cdb173a4..642b7ca2de19 100644 --- a/framework/inc/dispatch/selfdispatcher.hxx +++ b/framework/inc/dispatch/selfdispatcher.hxx @@ -2,9 +2,9 @@ * * $RCSfile: selfdispatcher.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: as $ $Date: 2001-07-06 13:24:45 $ + * last change: $Author: as $ $Date: 2001-07-20 08:09:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -133,11 +133,21 @@ class SelfDispatcher : // -interfaces ... are supported by our BaseDispatch virtual void SAL_CALL reactForLoadingState ( const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lDescriptor , const css::uno::Reference< css::frame::XFrame >& xTarget , - sal_Bool bState ); + sal_Bool bState , + const css::uno::Any& aAsyncInfo ); virtual void SAL_CALL reactForHandlingState( const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lDescriptor , - sal_Bool bState ); + sal_Bool bState , + const css::uno::Any& aAsyncInfo ); + + //------------------------------------------------------------------------------------------------------------- + // private debug methods + //------------------------------------------------------------------------------------------------------------- + #ifdef ENABLE_ASSERTIONS + private: + static sal_Bool implcp_checkProtocol( const css::util::URL& aURL ); + #endif }; // class SelfDispatcher |