diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-11 10:37:30 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-11 17:19:39 +0000 |
commit | 50b26404dee83974cf84749a9d492ed208464597 (patch) | |
tree | 9f2d96524259327ac48f443af72e2503fcd2bfaf /vcl/osx/DragSourceContext.cxx | |
parent | 8358eadcbae4b1e20f85f31d0faf6b3fccf353eb (diff) |
vcl: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I4499569f73b04cc7444787d51bf804c090a5c951
Reviewed-on: https://gerrit.libreoffice.org/18478
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'vcl/osx/DragSourceContext.cxx')
-rw-r--r-- | vcl/osx/DragSourceContext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/DragSourceContext.cxx b/vcl/osx/DragSourceContext.cxx index ac3b9221d98a..319e969e8e99 100644 --- a/vcl/osx/DragSourceContext.cxx +++ b/vcl/osx/DragSourceContext.cxx @@ -27,7 +27,7 @@ using namespace com::sun::star::uno; using namespace cppu; DragSourceContext::DragSourceContext() : - WeakComponentImplHelper1<XDragSourceContext>(m_aMutex) + WeakComponentImplHelper<XDragSourceContext>(m_aMutex) { } |