diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-11 11:02:33 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-11 17:16:17 +0000 |
commit | 8358eadcbae4b1e20f85f31d0faf6b3fccf353eb (patch) | |
tree | 6d97a23ad4e1791c6d9cc2f633764486c0ad1f6d /xmloff/source/draw | |
parent | f1f179ba0ff3d293e81c7b95554f8e6b140340d7 (diff) |
xmloff: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: I47002abab1e025d0683f4cf8ef7b6c99e668d425
Reviewed-on: https://gerrit.libreoffice.org/18479
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r-- | xmloff/source/draw/animationimport.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/draw/ximppage.cxx | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/xmloff/source/draw/animationimport.cxx b/xmloff/source/draw/animationimport.cxx index 495441ef2173..5bc91ff0ca50 100644 --- a/xmloff/source/draw/animationimport.cxx +++ b/xmloff/source/draw/animationimport.cxx @@ -49,7 +49,6 @@ #include <com/sun/star/presentation/EffectCommands.hpp> #include <com/sun/star/util/Duration.hpp> #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase1.hxx> #include <sax/tools/converter.hxx> diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index fa86bafaed48..5e4abe4fc7ee 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -64,7 +64,6 @@ #include "facreg.hxx" #include "xexptran.hxx" -#include <cppuhelper/implbase1.hxx> #include <comphelper/extract.hxx> #include <comphelper/processfactory.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> diff --git a/xmloff/source/draw/ximppage.cxx b/xmloff/source/draw/ximppage.cxx index 14c816d30ce4..25f7e66eef2c 100644 --- a/xmloff/source/draw/ximppage.cxx +++ b/xmloff/source/draw/ximppage.cxx @@ -21,7 +21,7 @@ #include <com/sun/star/text/XTextCursor.hpp> #include <com/sun/star/util/DateTime.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <sax/tools/converter.hxx> #include "XMLNumberStylesImport.hxx" #include <xmloff/xmlstyle.hxx> @@ -533,7 +533,7 @@ void SdXMLGenericPageContext::SetPageMaster( OUString& rsPageMasterName ) } } -class XoNavigationOrderAccess : public ::cppu::WeakImplHelper1< XIndexAccess > +class XoNavigationOrderAccess : public ::cppu::WeakImplHelper< XIndexAccess > { public: explicit XoNavigationOrderAccess( std::vector< Reference< XShape > >& rShapes ); |