summaryrefslogtreecommitdiff
path: root/animations
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-07-01 16:35:04 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-07-06 07:36:07 +0000
commit15c0fba5c2adb72dfaaf2dfeb0fc5c0dbdfa6e26 (patch)
treec801cc3373f48e1563dd44c8c999a22c9ca07e89 /animations
parent623c2b92b90ffce8ece14cbbd2da7067e2759e99 (diff)
tdf#88206: replace cppu::WeakImplHelper1 with cppu::WeakImplHelper
in animations. Change-Id: I7d776ddb81e0943bf2ea5895ea26631db76546ac Reviewed-on: https://gerrit.libreoffice.org/16645 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'animations')
-rw-r--r--animations/source/animcore/animcore.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx
index cd67ed06eb42..2d23c2b45136 100644
--- a/animations/source/animcore/animcore.cxx
+++ b/animations/source/animcore/animcore.cxx
@@ -51,7 +51,7 @@
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/weakref.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <osl/mutex.hxx>
#include <list>
@@ -351,7 +351,7 @@ private:
-class TimeContainerEnumeration : public ::cppu::WeakImplHelper1< XEnumeration >
+class TimeContainerEnumeration : public ::cppu::WeakImplHelper< XEnumeration >
{
public:
explicit TimeContainerEnumeration( const ChildList_t &rChildren );