diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-30 21:24:35 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-31 07:14:47 +0000 |
commit | c1c6a8615c420e8b1dd1f94614a36e250dab8f96 (patch) | |
tree | 46304fa1a82b0f3bde8d7c3341818ff69cec7934 /sd/source/ui/inc/unomodel.hxx | |
parent | 5670f4ca8785180f135927477945027518e92ed4 (diff) |
sd: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I01909ee45c31d17356e13b1ff2430440daff9aa7
Reviewed-on: https://gerrit.libreoffice.org/18146
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/source/ui/inc/unomodel.hxx')
-rw-r--r-- | sd/source/ui/inc/unomodel.hxx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sd/source/ui/inc/unomodel.hxx b/sd/source/ui/inc/unomodel.hxx index f77cc5bbd2e2..6aff89c83444 100644 --- a/sd/source/ui/inc/unomodel.hxx +++ b/sd/source/ui/inc/unomodel.hxx @@ -50,6 +50,7 @@ #include <editeng/unoipset.hxx> #include <comphelper/servicehelper.hxx> +#include <cppuhelper/implbase.hxx> #include <sddllapi.h> class SdDrawDocument; @@ -274,9 +275,7 @@ public: * * ***********************************************************************/ -#include <cppuhelper/implbase4.hxx> - -class SdDrawPagesAccess : public ::cppu::WeakImplHelper4< ::com::sun::star::drawing::XDrawPages, ::com::sun::star::container::XNameAccess, ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XComponent > +class SdDrawPagesAccess : public ::cppu::WeakImplHelper< ::com::sun::star::drawing::XDrawPages, ::com::sun::star::container::XNameAccess, ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XComponent > { private: SdXImpressDocument* mpModel; @@ -317,9 +316,7 @@ public: * * ***********************************************************************/ -#include <cppuhelper/implbase3.hxx> - -class SdMasterPagesAccess : public ::cppu::WeakImplHelper3< ::com::sun::star::drawing::XDrawPages, ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XComponent > +class SdMasterPagesAccess : public ::cppu::WeakImplHelper< ::com::sun::star::drawing::XDrawPages, ::com::sun::star::lang::XServiceInfo, ::com::sun::star::lang::XComponent > { private: SdXImpressDocument* mpModel; @@ -357,7 +354,7 @@ public: * * ***********************************************************************/ -class SdDocLinkTargets : public ::cppu::WeakImplHelper3< ::com::sun::star::container::XNameAccess, +class SdDocLinkTargets : public ::cppu::WeakImplHelper< ::com::sun::star::container::XNameAccess, ::com::sun::star::lang::XServiceInfo , ::com::sun::star::lang::XComponent > { private: |