diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-07 16:29:45 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-07 19:48:00 +0100 |
commit | 5f216c82ab5fbab44ab55a5127d0be7d4a2da8e3 (patch) | |
tree | 4ceadc87ff8627bbaa55e3e7518206c455911c16 /sc | |
parent | 375f9460d99a0e2c366318edcc41d64d6170286e (diff) |
Related: tdf#92392 protect against double dispose from dtor with disposeOnce
Change-Id: I40f3bdea784a1abed8f9732a9444cd8d1eccf4a9
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/anyrefdg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/inc/anyrefdg.hxx b/sc/source/ui/inc/anyrefdg.hxx index c059ea997e3b..8341ba86a694 100644 --- a/sc/source/ui/inc/anyrefdg.hxx +++ b/sc/source/ui/inc/anyrefdg.hxx @@ -278,7 +278,7 @@ struct ScRefHdlrImpl: ScRefHdlrImplBase< TBase, bBindRef > ~ScRefHdlrImpl() { - dispose(); + TBase::disposeOnce(); } }; |