diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-26 12:22:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-27 09:32:19 +0200 |
commit | ba1e1727c238210b022741a710486964f28bb065 (patch) | |
tree | 8b8a5afbc4a16eef7dc95b144937fa57cf6c9abd /sfx2/source | |
parent | 877dd9e9d1c1774817fa96f62adda98d5bce0ce8 (diff) |
Related: rhbz#1602589 add comments to coverity annotations
Change-Id: I88c941832a0d682ea4b6028c28edd48cf5df38f7
Reviewed-on: https://gerrit.libreoffice.org/58093
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/itemdel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/itemdel.cxx b/sfx2/source/control/itemdel.cxx index c6d53ef45936..d0555950dd39 100644 --- a/sfx2/source/control/itemdel.cxx +++ b/sfx2/source/control/itemdel.cxx @@ -77,7 +77,7 @@ void DeleteItemOnIdle(SfxPoolItem* pItem) DBG_ASSERT( 0 == pItem->GetRefCount(), "deleting item in use" ); SfxItemDisruptor_Impl *pDesruptor = new SfxItemDisruptor_Impl(pItem); pDesruptor->LaunchDeleteOnIdle(); - // coverity[leaked_storage] pDesruptor takes care of its own destruction at idle time + // coverity[leaked_storage] - pDesruptor takes care of its own destruction at idle time } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |