whitespace cleanup

Change-Id: I511412f8b6d8ac2fcbac738d1ef5e6d5cd9928bb
This commit is contained in:
Markus Mohrhard 2014-05-10 21:37:43 +02:00
parent 46351c13e9
commit 86dcfe908f

View file

@ -28,11 +28,6 @@
#include <svl/itempool.hxx>
// STATIC DATA -----------------------------------------------------------
class SfxItemDesruptor_Impl: private boost::noncopyable
{
SfxPoolItem *pItem;
@ -47,7 +42,6 @@ public:
~SfxItemDesruptor_Impl();
};
SfxItemDesruptor_Impl::SfxItemDesruptor_Impl( SfxPoolItem *pItemToDesrupt ):
pItem(pItemToDesrupt),
aLink( LINK(this, SfxItemDesruptor_Impl, Delete) )
@ -63,7 +57,6 @@ void SfxItemDesruptor_Impl::LaunchDeleteOnIdle()
GetpApp()->InsertIdleHdl( aLink, 1 );
}
SfxItemDesruptor_Impl::~SfxItemDesruptor_Impl()
{
@ -76,7 +69,6 @@ SfxItemDesruptor_Impl::~SfxItemDesruptor_Impl()
delete pItem;
}
IMPL_LINK_NOARG(SfxItemDesruptor_Impl, Delete)
{
delete this;