diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-07-11 12:52:23 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-13 06:58:01 +0000 |
commit | 26ac3ee8b2f8cb3bd298d98f9a94c9e305f6c304 (patch) | |
tree | e3151f901b656070bba1837d9881d57ac12fbb46 /sd/source | |
parent | d11b244bf9b9115f5384d6ff43bdffc7f1289d71 (diff) |
editeng, convert to typed Link<>
and remove SvxBrushItem::SetDoneLink since the field it sets
is unused.wq
Change-Id: Ide95a295fa8004f1ddab5e560f01d36d36658a72
Reviewed-on: https://gerrit.libreoffice.org/16943
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/outlview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx index 59e790cdff6b..bc3c87b1e197 100644 --- a/sd/source/ui/view/outlview.cxx +++ b/sd/source/ui/view/outlview.cxx @@ -1382,7 +1382,7 @@ void OutlineView::ResetLinks() const mrOutliner.SetStatusEventHdl(aEmptyLink); mrOutliner.SetRemovingPagesHdl(aEmptyLink); mrOutliner.SetIndentingPagesHdl(aEmptyLink); - mrOutliner.SetDrawPortionHdl(aEmptyLink); + mrOutliner.SetDrawPortionHdl(Link<DrawPortionInfo*,void>()); mrOutliner.SetBeginPasteOrDropHdl(aEmptyLink); mrOutliner.SetEndPasteOrDropHdl(aEmptyLink); } |