summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/graph.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-08 14:28:58 +0200
committerNoel Grandin <noel@peralex.com>2015-09-10 08:20:15 +0200
commit4db28b21499b866c44a6727118a9a94bf2f590ef (patch)
tree641178417368b22f0ccece05b0d2fb919f7ea982 /vcl/source/gdi/graph.cxx
parent5066199663e40aad46e769ca3372f5f0b9915789 (diff)
convert Link<> to typed
Change-Id: I7aa46c5cbaf70bea5756a4066bc620b3c40dedee
Diffstat (limited to 'vcl/source/gdi/graph.cxx')
-rw-r--r--vcl/source/gdi/graph.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/graph.cxx b/vcl/source/gdi/graph.cxx
index 9eafd5083da3..80fd0f53dd6d 100644
--- a/vcl/source/gdi/graph.cxx
+++ b/vcl/source/gdi/graph.cxx
@@ -459,12 +459,12 @@ void Graphic::StopAnimation( OutputDevice* pOutDev, long nExtraData )
mpImpGraphic->ImplStopAnimation( pOutDev, nExtraData );
}
-void Graphic::SetAnimationNotifyHdl( const Link<>& rLink )
+void Graphic::SetAnimationNotifyHdl( const Link<Animation*,void>& rLink )
{
mpImpGraphic->ImplSetAnimationNotifyHdl( rLink );
}
-Link<> Graphic::GetAnimationNotifyHdl() const
+Link<Animation*,void> Graphic::GetAnimationNotifyHdl() const
{
return mpImpGraphic->ImplGetAnimationNotifyHdl();
}