Kaydet (Commit) 04263067 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

This needs to be debugged and understood, not just randomly "fixed"

This reverts commit 72827968.

Change-Id: Ie79bb1d57d05c0a1e51733bacc1b103f44ddc153
üst 2574a22a
......@@ -59,9 +59,7 @@ SfxListener::~SfxListener()
void SfxListener::RemoveBroadcaster_Impl( SfxBroadcaster& rBroadcaster )
{
SfxBroadcasterArr_Impl::iterator aIter = std::find( aBCs.begin(), aBCs.end(), &rBroadcaster );
if ( aIter != aBCs.end() )
aBCs.erase( aIter );
aBCs.erase( std::find( aBCs.begin(), aBCs.end(), &rBroadcaster ) );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment