summaryrefslogtreecommitdiff
path: root/cppuhelper/source/component_context.cxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-07 08:59:42 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-07 13:25:50 +0000
commit61b00192cd4682cb592d880be1f4d57925ca03c7 (patch)
tree6003d3d8d81c7f7564c0bf7b780bc403399ef18c /cppuhelper/source/component_context.cxx
parent81f7824a9839d3230b4e58424a64a393e8ee0223 (diff)
tdf#88206 replace cppu::WeakImplHelper* in cppuhelper
Change-Id: I3130a3fe28c00bd83cade9667a6e3b3abcb719f7 Reviewed-on: https://gerrit.libreoffice.org/31714 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppuhelper/source/component_context.cxx')
-rw-r--r--cppuhelper/source/component_context.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index 5dfb0714e1d7..3fb4b94b6432 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -28,10 +28,10 @@
#include <uno/lbnames.h>
#include <uno/mapping.hxx>
-#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/compbase.hxx>
#include <cppuhelper/component_context.hxx>
#include <cppuhelper/exc_hlp.hxx>
+#include <cppuhelper/implbase.hxx>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/lang/WrappedTargetRuntimeException.hpp>
@@ -78,7 +78,7 @@ static inline void try_dispose( Reference< lang::XComponent > const & xComp )
}
class DisposingForwarder
- : public WeakImplHelper1< lang::XEventListener >
+ : public WeakImplHelper< lang::XEventListener >
{
Reference< lang::XComponent > m_xTarget;