diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-14 22:12:11 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-15 08:51:29 +0100 |
commit | 8c6342c25896e515869500f538370de336b123c7 (patch) | |
tree | 06b57730d9abc397e455a7c6a5ac2f2910af31b0 /include/sfx2 | |
parent | 90a1232fb3a38bcf67ed2b1f195206041bca4174 (diff) |
sfx: Use constructor feature for SfxAppDispatchProvider.
Change-Id: I2ca8abb284e8441a49c6e96a10cf76b5680e48e2
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/appuno.hxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/sfx2/appuno.hxx b/include/sfx2/appuno.hxx index a022328f13f0..b14ee6ae8931 100644 --- a/include/sfx2/appuno.hxx +++ b/include/sfx2/appuno.hxx @@ -46,27 +46,6 @@ #include <tools/errcode.hxx> #include <sfx2/sfxuno.hxx> -class SfxAppDispatchProvider : public ::cppu::WeakImplHelper3< ::com::sun::star::frame::XAppDispatchProvider, - ::com::sun::star::lang::XServiceInfo, - ::com::sun::star::lang::XInitialization > -{ - ::com::sun::star::uno::WeakReference < ::com::sun::star::frame::XFrame > m_xFrame; -public: - SfxAppDispatchProvider( const com::sun::star::uno::Reference < ::com::sun::star::lang::XMultiServiceFactory >& ) - {} - - SFX_DECL_XSERVICEINFO - virtual ::com::sun::star::uno::Reference < ::com::sun::star::frame::XDispatch > SAL_CALL - queryDispatch( const ::com::sun::star::util::URL& aURL, const OUString& sTargetFrameName, - FrameSearchFlags eSearchFlags ) throw( ::com::sun::star::uno::RuntimeException ) ; - virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference < ::com::sun::star::frame::XDispatch > > SAL_CALL - queryDispatches( const ::com::sun::star::uno::Sequence < ::com::sun::star::frame::DispatchDescriptor >& seqDescriptor ) - throw( ::com::sun::star::uno::RuntimeException ) ; - virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Sequence< sal_Int16 > SAL_CALL getSupportedCommandGroups() throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Sequence< ::com::sun::star::frame::DispatchInformation > SAL_CALL getConfigurableDispatchInformation( sal_Int16 ) throw (::com::sun::star::uno::RuntimeException); -}; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |