diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-10-16 14:41:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-10-16 17:12:11 +0200 |
commit | ab79dc909ac755dd66c08c942f8be6957b9d0cfc (patch) | |
tree | c1808f36c9452d553a37ff9283282ad7dc8f38ae /sd/source | |
parent | 5d34a6efc6b7be5f89b9beee39af32b85498b177 (diff) |
coverity#1440239 Uncaught exception
Change-Id: Ibecc931a53a58fc78f400e23e980f75def0f5935
Reviewed-on: https://gerrit.libreoffice.org/61838
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index 3486f9be2013..47917c01647f 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -1213,6 +1213,9 @@ class KeepSlideSorterInSyncWithPageChanges sd::slidesorter::controller::PageSelector::UpdateLock const m_aUpdateLock; sd::slidesorter::controller::SelectionObserver::Context const m_aContext; + KeepSlideSorterInSyncWithPageChanges& operator=(const KeepSlideSorterInSyncWithPageChanges&) = delete; + KeepSlideSorterInSyncWithPageChanges(const KeepSlideSorterInSyncWithPageChanges&) = delete; + public: explicit KeepSlideSorterInSyncWithPageChanges(sd::slidesorter::SlideSorter const & rSlideSorter) : m_aDrawLock(rSlideSorter) |