diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-09 12:51:01 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-09 08:13:28 +0000 |
commit | a9c83ee37561e0dbf5f1ad57a4de7c179785c45b (patch) | |
tree | 7c8ee06208e5ec12611f495d64b70737605c60b6 /unotools/source/misc/desktopterminationobserver.cxx | |
parent | c30c6357743a4f0845269aef493a661cd1375eec (diff) |
unotools: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: I43d586da78976c33557e66ced9782ac7adb8dc77
Reviewed-on: https://gerrit.libreoffice.org/18428
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'unotools/source/misc/desktopterminationobserver.cxx')
-rw-r--r-- | unotools/source/misc/desktopterminationobserver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/misc/desktopterminationobserver.cxx b/unotools/source/misc/desktopterminationobserver.cxx index b6785ac4ed63..cecb590c9828 100644 --- a/unotools/source/misc/desktopterminationobserver.cxx +++ b/unotools/source/misc/desktopterminationobserver.cxx @@ -21,7 +21,7 @@ #include <com/sun/star/frame/XTerminateListener.hpp> #include <com/sun/star/frame/Desktop.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <comphelper/processfactory.hxx> #include <osl/diagnose.h> @@ -56,7 +56,7 @@ namespace utl //= OObserverImpl - class OObserverImpl : public ::cppu::WeakImplHelper1< XTerminateListener > + class OObserverImpl : public ::cppu::WeakImplHelper< XTerminateListener > { public: static void ensureObservation(); |