summaryrefslogtreecommitdiff
path: root/filter/source/graphic
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-08 10:53:34 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-11 07:06:51 +0000
commit678bb5135bf99a295c38060aa003e81a8c3b435a (patch)
tree678f5221dc2cc1bf29c7e11e917139c6566679c6 /filter/source/graphic
parent0b0fb87fbac36ef9fbf3dfeac0f1372617f4b3e4 (diff)
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for filter. Change-Id: I30dcd7cfb3e484034f6cceceb1ff7cd9d3f4b7a6 Reviewed-on: https://gerrit.libreoffice.org/17585 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter/source/graphic')
-rw-r--r--filter/source/graphic/GraphicExportDialog.hxx4
-rw-r--r--filter/source/graphic/GraphicExportFilter.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/graphic/GraphicExportDialog.hxx b/filter/source/graphic/GraphicExportDialog.hxx
index 8c1028cd2e1e..c383bad1c0b0 100644
--- a/filter/source/graphic/GraphicExportDialog.hxx
+++ b/filter/source/graphic/GraphicExportDialog.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_FILTER_SOURCE_GRAPHIC_GRAPHICEXPORTDIALOG_HXX
#include <tools/fldunit.hxx>
-#include <cppuhelper/implbase4.hxx>
+#include <cppuhelper/implbase.hxx>
#include <comphelper/processfactory.hxx>
#include <com/sun/star/lang/XInitialization.hpp>
@@ -34,7 +34,7 @@ using namespace css::uno;
using namespace css::beans;
using namespace css::lang;
-class GraphicExportDialog : public cppu::WeakImplHelper4
+class GraphicExportDialog : public cppu::WeakImplHelper
<
document::XExporter,
ui::dialogs::XExecutableDialog,
diff --git a/filter/source/graphic/GraphicExportFilter.hxx b/filter/source/graphic/GraphicExportFilter.hxx
index 2dfd2f8d7b6e..5f349a792517 100644
--- a/filter/source/graphic/GraphicExportFilter.hxx
+++ b/filter/source/graphic/GraphicExportFilter.hxx
@@ -28,7 +28,7 @@
#include <com/sun/star/task/XStatusIndicatorFactory.hpp>
#include <com/sun/star/io/XOutputStream.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <comphelper/processfactory.hxx>
using namespace css;
@@ -38,7 +38,7 @@ using namespace css::beans;
using namespace css::document;
class GraphicExportFilter :
- public cppu::WeakImplHelper3 < XFilter, XExporter, XInitialization >
+ public cppu::WeakImplHelper < XFilter, XExporter, XInitialization >
{
Reference<XComponent> mxDocument;
Reference<XComponentContext> mxContext;