diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-25 14:42:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-25 16:06:54 +0100 |
commit | c694be016923d6ed3763e001d509a6f720dc1ee9 (patch) | |
tree | c2bd29c343b0f9f0c2dd140689c3d0dfb9d7adad /svtools/source/misc/itemdel.cxx | |
parent | 8c37bc0f43ecda80b5f476fdb0df9987550b0915 (diff) |
DeleteOnIdleItems isn't called anywhere
Diffstat (limited to 'svtools/source/misc/itemdel.cxx')
-rw-r--r-- | svtools/source/misc/itemdel.cxx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/svtools/source/misc/itemdel.cxx b/svtools/source/misc/itemdel.cxx index 243619d3a465..8a583f73ba96 100644 --- a/svtools/source/misc/itemdel.cxx +++ b/svtools/source/misc/itemdel.cxx @@ -116,20 +116,4 @@ SfxPoolItem* DeleteItemOnIdle( SfxPoolItem* pItem ) return pItem; } -// ------------------------------------------------------------------------ -void DeleteOnIdleItems() -{ - SfxItemDesruptorList_Impl* &rpList - = ImpSvtData::GetSvtData().pItemDesruptList; - if ( rpList ) - { - sal_uInt16 n; - while ( 0 != ( n = rpList->Count() ) ) - // Remove ist implizit im Dtor - delete rpList->GetObject( n-1 ); - DELETEZ(rpList); - } -} - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |