diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-28 09:42:29 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-03 16:14:41 +0000 |
commit | 1873563bb2d9743fe548ceaf2d1429280a27b956 (patch) | |
tree | cc1f851977966aeda4978a618b80bba01ca8dce2 /sc/inc/filtuno.hxx | |
parent | 88890c2a7522394f355a3f47a4dfb4608ac5a1cd (diff) |
sc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I2f55a6231e903b0ca198cee3a88023ad1db6c50c
Reviewed-on: https://gerrit.libreoffice.org/18072
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sc/inc/filtuno.hxx')
-rw-r--r-- | sc/inc/filtuno.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/filtuno.hxx b/sc/inc/filtuno.hxx index a3126db578ee..14039479037b 100644 --- a/sc/inc/filtuno.hxx +++ b/sc/inc/filtuno.hxx @@ -26,14 +26,14 @@ #include <com/sun/star/document/XExporter.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/implbase5.hxx> +#include <cppuhelper/implbase.hxx> #include "scdllapi.h" namespace com { namespace sun { namespace star { namespace io { class XInputStream; } } } } -class ScFilterOptionsObj : public ::cppu::WeakImplHelper5< +class ScFilterOptionsObj : public ::cppu::WeakImplHelper< ::com::sun::star::beans::XPropertyAccess, ::com::sun::star::ui::dialogs::XExecutableDialog, ::com::sun::star::document::XImporter, |