diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-08 10:11:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-09 10:06:11 +0200 |
commit | f73144801474aa4b3d6b997ceab7fabae8bfc3e7 (patch) | |
tree | 13c96dea817c041cbca6f19ae208dfa9166cca05 /svx | |
parent | 5906a2a6380dc8f748a3c6f4fa0778e237abdff2 (diff) |
convert Link<> to typed
Change-Id: I4fba6bf5b34b086a11659de3cddf46c76007a147
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdhdl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx index 0a4a9aaf5d42..f63d75952d85 100644 --- a/svx/source/svdraw/svdhdl.cxx +++ b/svx/source/svdraw/svdhdl.cxx @@ -1230,11 +1230,10 @@ void SdrHdlGradient::CreateB2dIAObject() } } -IMPL_LINK(SdrHdlGradient, ColorChangeHdl, SdrHdl*, /*pHdl*/) +IMPL_LINK_NOARG_TYPED(SdrHdlGradient, ColorChangeHdl, SdrHdlColor*, void) { if(GetObj()) FromIAOToItem(GetObj(), true, true); - return 0; } void SdrHdlGradient::FromIAOToItem(SdrObject* _pObj, bool bSetItemOnObject, bool bUndo) |