[Libreoffice-commits] core.git: animations/source

Takeshi Abe tabe at fixedpoint.jp
Mon Jul 6 00:36:39 PDT 2015


 animations/source/animcore/animcore.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 15c0fba5c2adb72dfaaf2dfeb0fc5c0dbdfa6e26
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Wed Jul 1 16:35:04 2015 +0900

    tdf#88206: replace cppu::WeakImplHelper1 with cppu::WeakImplHelper
    
    in animations.
    
    Change-Id: I7d776ddb81e0943bf2ea5895ea26631db76546ac
    Reviewed-on: https://gerrit.libreoffice.org/16645
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx
index cd67ed0..2d23c2b 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 );


More information about the Libreoffice-commits mailing list