summaryrefslogtreecommitdiff
path: root/vcl/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-24 08:57:19 +0200
committerNoel Grandin <noel@peralex.com>2014-10-24 08:58:05 +0200
commit0a82645c360158f9cc0fdabe2a52f1ff8f981bed (patch)
treefdb1035983220bf588f1f77de7a0d5f2b1f0a861 /vcl/source/filter
parent6ba8b7f5eacac969e4781d63718083a05491b1bc (diff)
loplugin: cstylecast
Change-Id: Ia0f5f0d0efbe4693aba347bff32cd694117251fe
Diffstat (limited to 'vcl/source/filter')
-rw-r--r--vcl/source/filter/graphicfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx
index 79be1aadf326..27f08fb8093b 100644
--- a/vcl/source/filter/graphicfilter.cxx
+++ b/vcl/source/filter/graphicfilter.cxx
@@ -2168,7 +2168,7 @@ void GraphicFilter::ResetLastError()
const Link GraphicFilter::GetFilterCallback() const
{
- const Link aLink( LINK( this, GraphicFilter, FilterCallback ) );
+ const Link aLink( LINK( const_cast<GraphicFilter*>(this), GraphicFilter, FilterCallback ) );
return aLink;
}