diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-06 23:17:44 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-10 07:39:31 +0000 |
commit | b854086df80b2607a3506bc8d455c98ae58aa295 (patch) | |
tree | 6a2a79e91c1b2008f5d4c4d1f5744981ab58e4db /canvas/source/opengl/ogl_textlayout.hxx | |
parent | 37a367a3589302893c237237e4eb98f1e4195f6d (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in canvas.
Change-Id: I8604e6b6e0f45539e3411c98a166518b837b6758
Reviewed-on: https://gerrit.libreoffice.org/16798
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'canvas/source/opengl/ogl_textlayout.hxx')
-rw-r--r-- | canvas/source/opengl/ogl_textlayout.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/opengl/ogl_textlayout.hxx b/canvas/source/opengl/ogl_textlayout.hxx index 1bb77490b1d8..6541369266e7 100644 --- a/canvas/source/opengl/ogl_textlayout.hxx +++ b/canvas/source/opengl/ogl_textlayout.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_CANVAS_SOURCE_OPENGL_OGL_TEXTLAYOUT_HXX #define INCLUDED_CANVAS_SOURCE_OPENGL_OGL_TEXTLAYOUT_HXX -#include <cppuhelper/compbase1.hxx> +#include <cppuhelper/compbase.hxx> #include <comphelper/broadcasthelper.hxx> #include <com/sun/star/rendering/XTextLayout.hpp> @@ -26,7 +26,7 @@ namespace oglcanvas { - typedef ::cppu::WeakComponentImplHelper1< ::com::sun::star::rendering::XTextLayout > TextLayoutBaseT; + typedef ::cppu::WeakComponentImplHelper< ::com::sun::star::rendering::XTextLayout > TextLayoutBaseT; class TextLayout : public ::comphelper::OBaseMutex, public TextLayoutBaseT, |