diff options
Diffstat (limited to 'framework/inc/dispatch/menudispatcher.hxx')
-rw-r--r-- | framework/inc/dispatch/menudispatcher.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/framework/inc/dispatch/menudispatcher.hxx b/framework/inc/dispatch/menudispatcher.hxx index 344a653759b2..5460f5f63cc1 100644 --- a/framework/inc/dispatch/menudispatcher.hxx +++ b/framework/inc/dispatch/menudispatcher.hxx @@ -55,7 +55,6 @@ namespace framework{ typedef ::cppu::OMultiTypeInterfaceContainerHelperVar< OUString , OUStringHash > IMPL_ListenerHashContainer; - /*-************************************************************************************************************ @short helper for desktop only(!) to create new tasks on demand for dispatches @descr Use this class as member only! Never use it as baseclass. @@ -77,13 +76,10 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< // public methods - public: - // constructor / destructor - /*-**************************************************************************************************** @short standard ctor @descr These initialize a new instance of ths class with needed information for work. @@ -100,10 +96,8 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< MenuDispatcher( const css::uno::Reference< css::uno::XComponentContext >& rxContext , const css::uno::Reference< css::frame::XFrame >& xOwner ); - // XDispatch - /*-**************************************************************************************************** @short dispatch URL with arguments @descr Every dispatch create a new task. If load of URL failed task will deleted automaticly! @@ -154,17 +148,12 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< virtual void SAL_CALL removeStatusListener( const css::uno::Reference< css::frame::XStatusListener >& xControl, const css::util::URL& aURL ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; - - // XFrameActionListener - virtual void SAL_CALL frameAction( const css::frame::FrameActionEvent& aEvent ) throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; - // XEventListener - /*-**************************************************************************************************** @short dispose current instance @descr If service helper isn't required any longer call this method to release all used resources. @@ -179,10 +168,8 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; - // protected methods - protected: /*-**************************************************************************************************** @@ -201,10 +188,8 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< virtual ~MenuDispatcher(); - // private methods - private: /*-**************************************************************************************************** @@ -235,11 +220,9 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2< void impl_setAccelerators( Menu* pMenu, const Accelerator& aAccel ); - // variables // (should be private everyway!) - private: css::uno::WeakReference< css::frame::XFrame > m_xOwnerWeak ; /// css::uno::WeakReference to owner (Don't use a hard css::uno::Reference. Owner can't delete us then!) |