diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-01 07:27:20 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-01 07:59:50 +0000 |
commit | e15d4b8ee959ce51ebc78fe059c1c769bbc9e6ff (patch) | |
tree | a26bb3b914ede3c16d5e39eef001a8e3258cfa2d /sdext/source/pdfimport/misc | |
parent | ed33646cdecac866ab480bf5770726b4a5bfa6c9 (diff) |
sdext: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I663029b736489b81ed4ccb5f7bd657fbaf091bdf
Reviewed-on: https://gerrit.libreoffice.org/18206
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sdext/source/pdfimport/misc')
-rw-r--r-- | sdext/source/pdfimport/misc/pwdinteract.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sdext/source/pdfimport/misc/pwdinteract.cxx b/sdext/source/pdfimport/misc/pwdinteract.cxx index 896f5b678bc4..b06c8c3fbb12 100644 --- a/sdext/source/pdfimport/misc/pwdinteract.cxx +++ b/sdext/source/pdfimport/misc/pwdinteract.cxx @@ -31,8 +31,7 @@ #include <com/sun/star/task/DocumentPasswordRequest.hpp> #include <cppuhelper/exc_hlp.hxx> -#include <cppuhelper/implbase1.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <osl/mutex.hxx> #include <osl/diagnose.h> #include <rtl/ref.hxx> @@ -44,7 +43,7 @@ namespace { class PDFPasswordRequest: - public cppu::WeakImplHelper2< + public cppu::WeakImplHelper< task::XInteractionRequest, task::XInteractionPassword >, private boost::noncopyable { @@ -121,7 +120,7 @@ void PDFPasswordRequest::select() throw (uno::RuntimeException, std::exception) } class UnsupportedEncryptionFormatRequest: - public cppu::WeakImplHelper1< task::XInteractionRequest >, + public cppu::WeakImplHelper< task::XInteractionRequest >, private boost::noncopyable { public: |