diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-16 13:02:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-17 08:19:32 +0200 |
commit | 7ffa2184586a2339f80f0af41c303dad9e822390 (patch) | |
tree | 292c4f9a77e71a78058795c2e22e184fa86f1829 /editeng/source/outliner | |
parent | 81bec2e5535aeef7d6ae76f92124537d528f5c23 (diff) |
convert Link<> to typed
Change-Id: I93017f16affe16e8e452cd829bc4f9b495670d4d
Diffstat (limited to 'editeng/source/outliner')
-rw-r--r-- | editeng/source/outliner/outliner.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 18ad27cb33a4..8f740b5c1b7d 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -2016,13 +2016,13 @@ IMPL_LINK_TYPED( Outliner, EditEngineNotifyHdl, EENotify&, rNotify, void ) } /** sets a link that is called at the beginning of a drag operation at an edit view */ -void Outliner::SetBeginDropHdl( const Link<>& rLink ) +void Outliner::SetBeginDropHdl( const Link<EditView*,void>& rLink ) { pEditEngine->SetBeginDropHdl( rLink ); } /** sets a link that is called at the end of a drag operation at an edit view */ -void Outliner::SetEndDropHdl( const Link<>& rLink ) +void Outliner::SetEndDropHdl( const Link<EditView*,void>& rLink ) { pEditEngine->SetEndDropHdl( rLink ); } |