diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-19 11:00:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-19 13:24:50 +0100 |
commit | 867b5bb769f24f3f3f87a53e5e660f8766659bea (patch) | |
tree | 2f927b3f6cffae8e0065632e335f53086042a08e /vcl | |
parent | c39bd1f6690ade936d62a66265b9b277061024d8 (diff) |
drop newly unused methods
Change-Id: I390134b3cd0187f0adcced3625ad0a3a26f8fe28
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89008
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/listbox.hxx | 1 | ||||
-rw-r--r-- | vcl/source/control/imp_listbox.cxx | 5 | ||||
-rw-r--r-- | vcl/source/control/listbox.cxx | 5 |
3 files changed, 0 insertions, 11 deletions
diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx index 488d98ae732c..68695eed9914 100644 --- a/vcl/inc/listbox.hxx +++ b/vcl/inc/listbox.hxx @@ -370,7 +370,6 @@ public: bool GetEdgeBlending() const { return mbEdgeBlending; } void SetEdgeBlending(bool bNew) { mbEdgeBlending = bNew; } - void EnableQuickSelection( bool b ); using Control::ImplInitSettings; virtual void ApplySettings(vcl::RenderContext& rRenderContext) override; diff --git a/vcl/source/control/imp_listbox.cxx b/vcl/source/control/imp_listbox.cxx index c4486f9262a0..9e29102e55ec 100644 --- a/vcl/source/control/imp_listbox.cxx +++ b/vcl/source/control/imp_listbox.cxx @@ -613,11 +613,6 @@ SalLayoutGlyphs* ImplEntryType::GetTextGlyphs(const OutputDevice* pOutputDevice) return &maStrGlyphs; } -void ImplListBoxWindow::EnableQuickSelection( bool b ) -{ - maQuickSelectionEngine.SetEnabled( b ); -} - void ImplListBoxWindow::ImplUpdateEntryMetrics( ImplEntryType& rEntry ) { ImplEntryMetrics aMetrics; diff --git a/vcl/source/control/listbox.cxx b/vcl/source/control/listbox.cxx index 9b66451b37ed..9fa46963b9ff 100644 --- a/vcl/source/control/listbox.cxx +++ b/vcl/source/control/listbox.cxx @@ -34,11 +34,6 @@ #include <com/sun/star/datatransfer/dnd/XDropTarget.hpp> #include <boost/property_tree/ptree.hpp> -void ListBox::EnableQuickSelection( bool b ) -{ - mpImplLB->GetMainWindow()->EnableQuickSelection(b); -} - ListBox::ListBox(WindowType nType) : Control(nType) , mpImplLB(nullptr) |