summaryrefslogtreecommitdiff
path: root/editeng/source/outliner/outliner.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-16 13:33:30 +0200
committerNoel Grandin <noel@peralex.com>2015-09-17 08:19:32 +0200
commitbc9d5eb566137351969c58f907a2dc98273a6bf8 (patch)
treea319c8b981ac128efea4315c9469786168c15844 /editeng/source/outliner/outliner.cxx
parent7ffa2184586a2339f80f0af41c303dad9e822390 (diff)
convert Link<> to typed
Change-Id: Ida49b6a482efa12703ce294b9665273ad2d8f68b
Diffstat (limited to 'editeng/source/outliner/outliner.cxx')
-rw-r--r--editeng/source/outliner/outliner.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx
index 8f740b5c1b7d..c3c86b83c534 100644
--- a/editeng/source/outliner/outliner.cxx
+++ b/editeng/source/outliner/outliner.cxx
@@ -2001,7 +2001,7 @@ void Outliner::ImplBlockInsertionCallbacks( bool b )
EENotify aNotify(pEditEngine->aNotifyCache.front());
// Remove from list before calling, maybe we enter LeaveBlockNotifications while calling the handler...
pEditEngine->aNotifyCache.erase(pEditEngine->aNotifyCache.begin());
- pEditEngine->aOutlinerNotifyHdl.Call( &aNotify );
+ pEditEngine->aOutlinerNotifyHdl.Call( aNotify );
}
}
}
@@ -2010,7 +2010,7 @@ void Outliner::ImplBlockInsertionCallbacks( bool b )
IMPL_LINK_TYPED( Outliner, EditEngineNotifyHdl, EENotify&, rNotify, void )
{
if ( !nBlockInsCallback )
- pEditEngine->aOutlinerNotifyHdl.Call( &rNotify );
+ pEditEngine->aOutlinerNotifyHdl.Call( rNotify );
else
pEditEngine->aNotifyCache.push_back(rNotify);
}