diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-06 19:05:49 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-06 19:37:48 +0300 |
commit | 951ed199f1a47c02dad3dc899b9804b4574a151d (patch) | |
tree | d8f82a3afa345351ce6a4a206424c6f2bd2aed46 /framework/inc/dispatch/closedispatcher.hxx | |
parent | be616c26f990d651c752be201e29e2b89ba17f2a (diff) |
Kill superfluous vertical whitespace
Change-Id: Ia1bb2b40c74efb17e655dd6f00d7ba48c16c65ae
Diffstat (limited to 'framework/inc/dispatch/closedispatcher.hxx')
-rw-r--r-- | framework/inc/dispatch/closedispatcher.hxx | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx index 97235519173c..0ac4621f8da7 100644 --- a/framework/inc/dispatch/closedispatcher.hxx +++ b/framework/inc/dispatch/closedispatcher.hxx @@ -39,12 +39,10 @@ #include <cppuhelper/implbase2.hxx> #include <vcl/evntpost.hxx> - class SystemWindow; namespace framework{ - /** @short helper to dispatch the URLs ".uno:CloseDoc"/".uno:CloseWin"/".uno:CloseFrame" to close a frame/document or the whole application implicitly in case it was the last frame @@ -64,7 +62,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< private: - /** @short describe, which request must be done here. @descr The incoming URLs {.uno:CloseDoc/CloseWin and CloseFrame can be classified so and checked later performant.}*/ @@ -75,54 +72,44 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< E_CLOSE_WIN }; - // member private: - /** @short reference to an uno service manager, which can be used to create own needed uno resources. */ css::uno::Reference< css::uno::XComponentContext > m_xContext; - /** @short reference to the target frame, which should be closed by this dispatch. */ css::uno::WeakReference< css::frame::XFrame > m_xCloseFrame; - /** @short used for asynchronous callbacks within the main thread. @descr Internally we work asynchronous. Because our callis are not aware, that her request can kill its own environment ... */ ::vcl::EventPoster m_aAsyncCallback; - /** @short used inside asyncronous callback to decide, which operation must be executed. */ EOperation m_eOperation; - /** @short for asynchronous operations we must hold us self alive! */ css::uno::Reference< css::uno::XInterface > m_xSelfHold; - /** @short list of registered status listener */ osl::Mutex m_mutex; ListenerHash m_lStatusListener; - /** @short holded alive for internally asynchronous operations! */ css::uno::Reference< css::frame::XDispatchResultListener > m_xResultListener; SystemWindow* m_pSysWindow; - // native interface public: - /** @short connect a new CloseDispatcher instance to its frame. @descr One CloseDispatcher instance is bound to onw frame only. That makes an implementation (e.g. of listener support) @@ -142,22 +129,18 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< const css::uno::Reference< css::frame::XFrame >& xFrame , const OUString& sTarget); - /** @short does nothing real. */ virtual ~CloseDispatcher(); - // uno interface public: - // XNotifyingDispatch virtual void SAL_CALL dispatchWithNotification( const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lArguments, const css::uno::Reference< css::frame::XDispatchResultListener >& xListener ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - // XDispatch virtual void SAL_CALL dispatch ( const css::util::URL& aURL , const css::uno::Sequence< css::beans::PropertyValue >& lArguments) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -166,17 +149,14 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xListener , const css::util::URL& aURL ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - // XDispatchInformationProvider virtual css::uno::Sequence< sal_Int16 > SAL_CALL getSupportedCommandGroups ( ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< css::frame::DispatchInformation > SAL_CALL getConfigurableDispatchInformation( sal_Int16 nCommandGroup ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - // internal helper private: - /** @short a callback for asynchronous started operations. @descr As already mentione, we make internally all operations @@ -185,7 +165,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< */ DECL_LINK( impl_asyncCallback, void* ); - /** @short prepare m_xCloseFrame so it should be closeable without problems. @descr Thats needed to be shure, that the document cant disagree @@ -211,7 +190,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< sal_Bool bCloseAllOtherViewsToo, sal_Bool& bControllerSuspended ); - /** @short close the member m_xCloseFrame. @descr This method does not look for any document @@ -228,7 +206,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< */ sal_Bool implts_closeFrame(); - /** @short set the special BackingComponent (now StartModule) as new component of our m_xCloseFrame. @@ -237,7 +214,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< */ sal_Bool implts_establishBackingMode(); - /** @short calls XDesktop->terminate(). @descr No office code has to be called @@ -251,7 +227,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< */ sal_Bool implts_terminateApplication(); - /** @short notify a DispatchResultListener. @descr We check the listener reference before we use it. @@ -271,7 +246,6 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2< sal_Int16 nState , const css::uno::Any& aResult ); - /** @short try to find the right target frame where this close request must be really done. |